Skip to content

Commit

Permalink
Bump version for release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jondegenhardt committed Sep 14, 2020
1 parent b5524aa commit 0c6154c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,10 +458,10 @@ There are several ways to obtain the tools: [prebuilt binaries](#prebuilt-binari

### Prebuilt binaries

Prebuilt binaries are available for Linux and Mac, these can be found on the [Github releases](https://github.com/eBay/tsv-utils/releases) page. Download and unpack the tar.gz file. Executables are in the `bin` directory. Add the `bin` directory or individual tools to the `PATH` environment variable. As an example, the 2.1.0 releases for Linux and MacOS can be downloaded and unpacked with these commands:
Prebuilt binaries are available for Linux and Mac, these can be found on the [Github releases](https://github.com/eBay/tsv-utils/releases) page. Download and unpack the tar.gz file. Executables are in the `bin` directory. Add the `bin` directory or individual tools to the `PATH` environment variable. As an example, the 2.1.1 releases for Linux and MacOS can be downloaded and unpacked with these commands:
```
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v2.1.0/tsv-utils-v2.1.0_linux-x86_64_ldc2.tar.gz | tar xz
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v2.1.0/tsv-utils-v2.1.0_osx-x86_64_ldc2.tar.gz | tar xz
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v2.1.1/tsv-utils-v2.1.1_linux-x86_64_ldc2.tar.gz | tar xz
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v2.1.1/tsv-utils-v2.1.1_osx-x86_64_ldc2.tar.gz | tar xz
```

See the [Github releases](https://github.com/eBay/tsv-utils/releases) page for the latest release.
Expand Down Expand Up @@ -502,10 +502,10 @@ The above requires LDC 1.9.0 or later. See [Building with Link Time Optimization

### Install using DUB

If you are a D user you likely use DUB, the D package manager. DUB comes packaged with DMD starting with DMD 2.072. You can install and build using DUB as follows (replace `2.1.0` with the current version):
If you are a D user you likely use DUB, the D package manager. DUB comes packaged with DMD starting with DMD 2.072. You can install and build using DUB as follows (replace `2.1.1` with the current version):
```
$ dub fetch tsv-utils --cache=local
$ cd tsv-utils-2.1.0/tsv-utils
$ cd tsv-utils-2.1.1/tsv-utils
$ dub run # For LDC: dub run -- --compiler=ldc2
```

Expand Down
2 changes: 1 addition & 1 deletion common/src/tsv_utils/common/tsvutils_version.d
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module tsv_utils.common.tsvutils_version;

enum string tsvutilsVersion = "v2.1.0";
enum string tsvutilsVersion = "v2.1.1";

string tsvutilsVersionNotice (string toolName) @safe pure nothrow
{
Expand Down

0 comments on commit 0c6154c

Please sign in to comment.