Skip to content

Commit 2425e80

Browse files
committed
prep for 1.0.219 release
1 parent a206f00 commit 2425e80

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
* Release 1.0.219 2023-05-08
4+
* Add ClojureCLR support [TCLI-102](https://clojure.atlassian.net/browse/TCLI-102) [@dmiller](https://github.com/dmiller)/
5+
36
* Release 1.0.214 2022-10-08
47
* Document `:missing`, `:multi`, and `:post-validation` in the docstrings and in the README.
58
* In the help summary, display default values for all options that provide them [TCLI-100](https://clojure.atlassian.net/browse/TCLI-100). Previously, only options that had required arguments would have their defaults shown.

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.214
9+
Latest stable release: 1.0.219
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.214"}
17+
org.clojure/tools.cli {:mvn/version "1.0.219"}
1818
```
1919

2020
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
2121
```clojure
22-
[org.clojure/tools.cli "1.0.214"]
22+
[org.clojure/tools.cli "1.0.219"]
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.214</version>
29+
<version>1.0.219</version>
3030
</dependency>
3131
```
3232
The 0.4.x series of tools.cli supports use with `clj`/`deps.edn` and brings

src/main/dotnet/packager/clojure.tools.cli.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
<RepositoryUrl>https://github.com/clojure/tools.cku</RepositoryUrl>
1919
<Company>Clojure contributors</Company>
2020
<PackageTags>Clojure;ClojureCLR</PackageTags>
21-
<Version>1.0.214</Version>
21+
<Version>1.0.219</Version>
2222
</PropertyGroup>
2323

2424
<ItemGroup>
2525
<EmbeddedResource CopyToOutputDirectory="Never" Include="..\..\clojure\clojure\tools\**\*" />
2626
</ItemGroup>
27-
27+
2828
</Project>

0 commit comments

Comments
 (0)