Skip to content

Commit 37bb806

Browse files
committed
Bump version number for 2.1.2 release.
1 parent 784e813 commit 37bb806

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -457,14 +457,14 @@ See the [keep-header reference](docs/tool_reference/keep-header.md) for more inf
457457

458458
There are several ways to obtain the tools: [prebuilt binaries](#prebuilt-binaries); [building from source code](#build-from-source-files); and [installing using the DUB package manager](#install-using-dub).
459459

460-
The tools are tested on Linux and MacOS. Windows users are encouraged to use either [Windows Subsystem for Linux (WSL)](https://docs.microsoft.com/en-us/windows/wsl/) or [Docker for Windows](https://docs.docker.com/docker-for-windows/) and run Linux builds of the tools.
460+
The tools are tested on Linux and MacOS. Windows users are encouraged to use either [Windows Subsystem for Linux (WSL)](https://docs.microsoft.com/en-us/windows/wsl/) or [Docker for Windows](https://docs.docker.com/docker-for-windows/) and run Linux builds of the tools. See [issue #317](https://github.com/eBay/tsv-utils/issues/317) for the status of Windows builds.
461461

462462
### Prebuilt binaries
463463

464-
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:
464+
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.2 releases for Linux and MacOS can be downloaded and unpacked with these commands:
465465
```
466-
$ 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
467-
$ 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
466+
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v2.1.2/tsv-utils-v2.1.2_linux-x86_64_ldc2.tar.gz | tar xz
467+
$ curl -L https://github.com/eBay/tsv-utils/releases/download/v2.1.2/tsv-utils-v2.1.2_osx-x86_64_ldc2.tar.gz | tar xz
468468
```
469469

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

506506
### Install using DUB
507507

508-
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):
508+
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.2` with the current version):
509509
```
510510
$ dub fetch tsv-utils --cache=local
511-
$ cd tsv-utils-2.1.1/tsv-utils
511+
$ cd tsv-utils-2.1.2/tsv-utils
512512
$ dub run # For LDC: dub run -- --compiler=ldc2
513513
```
514514

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 = "v2.1.1";
6+
enum string tsvutilsVersion = "v2.1.2";
77

88
string tsvutilsVersionNotice (string toolName) @safe pure nothrow
99
{

0 commit comments

Comments
 (0)