Skip to content

Commit

Permalink
Tag 6.0.0 (#850)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Jan 10, 2022
1 parent c7143ec commit 8346d33
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions create-release-tarball
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fi
TGZ_NAME=miller-${VERSION}.tar.gz

# Create the release tarball.
echo "Wrtiting $TGZ_NAME ..."
echo "Writing $TGZ_NAME ..."
$tar \
--transform 's,^./,miller-'$VERSION'/,' \
--exclude data \
Expand All @@ -94,4 +94,4 @@ $tar \
./man \
./test

echo "Wrote $TGZ_NAME"
echo "Wrote $TGZ_NAME"
4 changes: 2 additions & 2 deletions docs/src/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ In this example I am using version 6.1.0 to 6.2.0; of course that will change fo
* Create the release tarball:

* `make release_tarball`
* This creates `miller-6.2.0-dev.tar.gz` which we'll upload to GitHub, the URL of which will be in our `miller.spec`
* This creates `miller-6.2.0.tar.gz` which we'll upload to GitHub, the URL of which will be in our `miller.spec`
* Get `mlr.{arch}` binaries from latest successful build from [https://github.com/johnkerl/miller/actions](https://github.com/johnkerl/miller/actions), or, build them on buildboxes.
* Prepare the source RPM following `README-RPM.md`.
* Prepare the source RPM following [README-RPM.md](https://github.com/johnkerl/miller/blob/main/README-RPM.md).

* Create the Github release tag:

Expand Down
4 changes: 2 additions & 2 deletions docs/src/build.md.in
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ In this example I am using version 6.1.0 to 6.2.0; of course that will change fo
* Create the release tarball:

* `make release_tarball`
* This creates `miller-6.2.0-dev.tar.gz` which we'll upload to GitHub, the URL of which will be in our `miller.spec`
* This creates `miller-6.2.0.tar.gz` which we'll upload to GitHub, the URL of which will be in our `miller.spec`
* Get `mlr.{arch}` binaries from latest successful build from [https://github.com/johnkerl/miller/actions](https://github.com/johnkerl/miller/actions), or, build them on buildboxes.
* Prepare the source RPM following `README-RPM.md`.
* Prepare the source RPM following [README-RPM.md](https://github.com/johnkerl/miller/blob/main/README-RPM.md).

* Create the Github release tag:

Expand Down
2 changes: 1 addition & 1 deletion docs/src/installing-miller.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ As a first check, you should be able to run `mlr --version` at your system's com
<b>mlr --version</b>
</pre>
<pre class="pre-non-highlight-in-pair">
mlr 6.0.0-rc1
mlr 6.0.0
</pre>

As a second check, given [example.csv](./example.csv) you should be able to do
Expand Down
2 changes: 1 addition & 1 deletion docs/src/manpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ DESCRIPTION
insertion-ordered hash map. This encompasses a variety of data
formats, including but not limited to the familiar CSV, TSV, and JSON.
(Miller can handle positionally-indexed data as a special case.) This
manpage documents mlr 6.0.0-rc1.
manpage documents mlr 6.0.0.

EXAMPLES
mlr --icsv --opprint cat example.csv
Expand Down
2 changes: 1 addition & 1 deletion docs/src/manpage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DESCRIPTION
insertion-ordered hash map. This encompasses a variety of data
formats, including but not limited to the familiar CSV, TSV, and JSON.
(Miller can handle positionally-indexed data as a special case.) This
manpage documents mlr 6.0.0-rc1.
manpage documents mlr 6.0.0.

EXAMPLES
mlr --icsv --opprint cat example.csv
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// STRING is the current Miller major/minor/patch version as a single string.
var STRING string = "6.0.0-rc1"
var STRING string = "6.0.0"
2 changes: 1 addition & 1 deletion man/manpage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DESCRIPTION
insertion-ordered hash map. This encompasses a variety of data
formats, including but not limited to the familiar CSV, TSV, and JSON.
(Miller can handle positionally-indexed data as a special case.) This
manpage documents mlr 6.0.0-rc1.
manpage documents mlr 6.0.0.

EXAMPLES
mlr --icsv --opprint cat example.csv
Expand Down
2 changes: 1 addition & 1 deletion man/mlr.1
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ on integer-indexed fields: if the natural data structure for the latter is the
array, then Miller's natural data structure is the insertion-ordered hash map.
This encompasses a variety of data formats, including but not limited to the
familiar CSV, TSV, and JSON. (Miller can handle positionally-indexed data as
a special case.) This manpage documents mlr 6.0.0-rc1.
a special case.) This manpage documents mlr 6.0.0.
.SH "EXAMPLES"
.sp

Expand Down
4 changes: 2 additions & 2 deletions miller.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Name: miller
Version: 6.0.0
Release: 1%{?dist}
License: BSD
Source: https://github.com/johnkerl/miller/releases/download/%{version}/mlr-%{version}.tar.gz
Source: https://github.com/johnkerl/miller/releases/download/%{version}/miller-%{version}.tar.gz
URL: https://miller.readthedocs.io
# gcc for cgo transitive dependency
BuildRequires: golang
Expand Down Expand Up @@ -36,7 +36,7 @@ make install
%{_mandir}/man1/mlr.1*

%changelog
* Has not happened yet John Kerl <[email protected]> - 6.0.0-1
* Sun Jan 9 2022 John Kerl <[email protected]> - 6.0.0-1
- 6.0.0 release

* Tue Mar 23 2021 John Kerl <[email protected]> - 5.10.2-1
Expand Down

0 comments on commit 8346d33

Please sign in to comment.