Skip to content

Commit 687a355

Browse files
committed
Prep for 1.0.206 release
1 parent 98afc43 commit 687a355

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
* Release 1.0.next (on **master**)
3+
* Release 1.0.206 2021-02-27
44
* Allow validation to be performed either after parsing (before option processing) -- current default -- or after option processing, via the `:post-validation true` flag [TCLI-98](https://clojure.atlassian.net/browse/TCLI-98).
55
* Allow validation message to be a function (of the invalid argument) in addition to being a plain string [TCLI-97](https://clojure.atlassian.net/browse/TCLI-97).
66
* Add `:multi true` to modify behavior of `:update-fn` [TCLI-96](https://clojure.atlassian.net/browse/TCLI-96).

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@ Tools for working with command line arguments.
66

77
This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository.
88

9-
Latest stable release: 1.0.194
9+
Latest stable release: 1.0.206
1010

1111
* [All Released Versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22tools.cli%22)
1212

1313
* [Development Snapshot Versions](https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~tools.cli~~~)
1414

1515
[clj/deps.edn](https://clojure.org/guides/deps_and_cli) dependency information:
1616
```clojure
17-
org.clojure/tools.cli {:mvn/version "1.0.194"}
17+
org.clojure/tools.cli {:mvn/version "1.0.206"}
1818
```
1919

2020
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
2121
```clojure
22-
[org.clojure/tools.cli "1.0.194"]
22+
[org.clojure/tools.cli "1.0.206"]
2323
```
2424
[Maven](http://maven.apache.org/) dependency information:
2525
```xml
2626
<dependency>
2727
<groupId>org.clojure</groupId>
2828
<artifactId>tools.cli</artifactId>
29-
<version>1.0.194</version>
29+
<version>1.0.206</version>
3030
</dependency>
3131
```
3232
The 0.4.x series of tools.cli supports use with `clj`/`deps.edn` and brings

0 commit comments

Comments
 (0)