Skip to content

Commit c44dc14

Browse files
committed
Bump version.
1 parent 374582e commit c44dc14

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,10 @@ There are several ways to obtain the tools: [prebuilt binaries](#prebuilt-binari
234234

235235
### Prebuilt binaries
236236

237-
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:
237+
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:
238238
```
239-
$ 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
240-
$ 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
239+
$ 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
240+
$ 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
241241
```
242242

243243
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
276276

277277
### Install using DUB
278278

279-
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):
279+
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):
280280
```
281281
$ dub fetch tsv-utils --cache=local
282-
$ cd tsv-utils-1.3.1/tsv-utils
282+
$ cd tsv-utils-1.3.2/tsv-utils
283283
$ dub run # For LDC: dub run -- --compiler=ldc2
284284
```
285285

common/src/tsv_utils/common/tsvutils_version.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
module tsv_utils.common.tsvutils_version;
55

6-
enum string tsvutilsVersion = "v1.3.1";
6+
enum string tsvutilsVersion = "v1.3.2";
77

88
string tsvutilsVersionNotice (string toolName)
99
{

docs/BuildingWithLTO.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,18 @@ $ git clone https://github.com/eBay/tsv-utils.git
6262
$ cd tsv-utils
6363
```
6464

65-
Via DUB (replace `1.3.1` with the version retrieved):
65+
Via DUB (replace `1.3.2` with the version retrieved):
6666

6767
```
6868
$ dub fetch tsv-utils --cache=local
69-
$ cd tsv-utils-1.3.1
69+
$ cd tsv-utils-1.3.2
7070
```
7171

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

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

7979
**Build with LTO enabled:**

0 commit comments

Comments
 (0)