Skip to content

Commit

Permalink
update for release
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed Feb 19, 2024
1 parent 2e790ae commit 740d377
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,26 @@ Tools for working with command line arguments.

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.

Latest stable release: 1.0.219
Latest stable release: 1.1.230

* [All Released Versions](https://central.sonatype.com/artifact/org.clojure/tools.cli/versions)

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

[clj/deps.edn](https://clojure.org/guides/deps_and_cli) dependency information:
[clj/deps.edn](https://clojure.org/guides/deps_edn) dependency information:
```clojure
org.clojure/tools.cli {:mvn/version "1.0.219"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
```

[Leiningen](https://leiningen.org/) dependency information:
```clojure
[org.clojure/tools.cli "1.0.219"]
[org.clojure/tools.cli "1.1.230"]
```
[Maven](http://maven.apache.org/) dependency information:
[Maven](https://maven.apache.org/) dependency information:
```xml
<dependency>
<groupId>org.clojure</groupId>
<artifactId>tools.cli</artifactId>
<version>1.0.219</version>
<version>1.1.230</version>
</dependency>
```
The 0.4.x series of tools.cli supports use with `clj`/`deps.edn` and brings
Expand Down Expand Up @@ -96,9 +95,9 @@ handled explicitly after checking the `:errors` entry for a truthy value.

Please see the [example program](#example-usage) for a more detailed example
and refer to the docstring of `parse-opts` for comprehensive documentation
(as part of the [API Documentation](http://clojure.github.io/tools.cli/)):
(as part of the [API Documentation](https://clojure.github.io/tools.cli/)):

http://clojure.github.io/tools.cli/index.html#clojure.tools.cli/parse-opts
https://clojure.github.io/tools.cli/index.html#clojure.tools.cli/parse-opts

## See Also

Expand Down Expand Up @@ -220,7 +219,7 @@ For detailed documentation, please see the docstring of `parse-opts`.
## Developer Information

* [GitHub project](https://github.com/clojure/tools.cli)
* [Bug Tracker](http://clojure.atlassian.net/browse/TCLI)
* [Bug Tracker](https://clojure.atlassian.net/browse/TCLI)
* [Continuous Integration](https://github.com/clojure/tools.cli/actions/workflows/test.yml)

## License
Expand Down

0 comments on commit 740d377

Please sign in to comment.