Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jondegenhardt committed Nov 12, 2018
1 parent 374582e commit c44dc14
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -234,10 +234,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 1.3.1 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 1.3.2 releases for Linux and MacOS can be downloaded and unpacked with these commands:
```
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v1.3.1/tsv-utils-v1.3.1_linux-x86_64_ldc2.tar.gz | tar xz
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v1.3.1/tsv-utils-v1.3.1_osx-x86_64_ldc2.tar.gz | tar xz
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v1.3.2/tsv-utils-v1.3.2_linux-x86_64_ldc2.tar.gz | tar xz
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v1.3.2/tsv-utils-v1.3.2_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 @@ -276,10 +276,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 `1.3.1` 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 `1.3.2` with the current version):
```
$ dub fetch tsv-utils --cache=local
$ cd tsv-utils-1.3.1/tsv-utils
$ cd tsv-utils-1.3.2/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
Expand Up @@ -3,7 +3,7 @@

module tsv_utils.common.tsvutils_version;

enum string tsvutilsVersion = "v1.3.1";
enum string tsvutilsVersion = "v1.3.2";

string tsvutilsVersionNotice (string toolName)
{
Expand Down
10 changes: 5 additions & 5 deletions docs/BuildingWithLTO.md
Expand Up @@ -62,18 +62,18 @@ $ git clone https://github.com/eBay/tsv-utils.git
$ cd tsv-utils
```

Via DUB (replace `1.3.1` with the version retrieved):
Via DUB (replace `1.3.2` with the version retrieved):

```
$ dub fetch tsv-utils --cache=local
$ cd tsv-utils-1.3.1
$ cd tsv-utils-1.3.2
```

Via the source from the GitHub [releases page](https://github.com/eBay/tsv-utils/releases) (replace `1.3.1` with the latest version):
Via the source from the GitHub [releases page](https://github.com/eBay/tsv-utils/releases) (replace `1.3.2` with the latest version):

```
$ curl -L https://github.com/eBay/tsv-utils/archive/v1.3.1.tar.gz | tar xz
$ cd tsv-utils-1.3.1/tsv-utils
$ curl -L https://github.com/eBay/tsv-utils/archive/v1.3.2.tar.gz | tar xz
$ cd tsv-utils-1.3.2/tsv-utils
```

**Build with LTO enabled:**
Expand Down

0 comments on commit c44dc14

Please sign in to comment.