From c44dc14236a21844e24d5000a7202b7ec19b62aa Mon Sep 17 00:00:00 2001 From: Jon Degenhardt Date: Sun, 11 Nov 2018 23:30:35 -0800 Subject: [PATCH] Bump version. --- README.md | 10 +++++----- common/src/tsv_utils/common/tsvutils_version.d | 2 +- docs/BuildingWithLTO.md | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8920574b..e49aab48 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 ``` diff --git a/common/src/tsv_utils/common/tsvutils_version.d b/common/src/tsv_utils/common/tsvutils_version.d index c959722f..d1e7d12a 100644 --- a/common/src/tsv_utils/common/tsvutils_version.d +++ b/common/src/tsv_utils/common/tsvutils_version.d @@ -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) { diff --git a/docs/BuildingWithLTO.md b/docs/BuildingWithLTO.md index 3bdefd43..016f618b 100644 --- a/docs/BuildingWithLTO.md +++ b/docs/BuildingWithLTO.md @@ -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:**