Skip to content

Commit 3176547

Browse files
committed
Prepare to switch to MAJOR.MINOR.COMMITS versioning
1 parent 53be3a3 commit 3176547

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

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

55
## Stable Releases and Dependency Information
66

7-
Latest stable release: 0.4.2
7+
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.
8+
9+
Latest stable release: 1.0.N
810

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

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

1315
[clj/deps.edn](https://clojure.org/guides/deps_and_cli) dependency information:
1416
```clojure
15-
clj -Sdeps '{:deps {org.clojure/tools.cli {:mvn/version "0.4.2"}}}'
17+
clj -Sdeps '{:deps {org.clojure/tools.cli {:mvn/version "1.0.N"}}}'
1618
```
1719

1820
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
1921
```clojure
20-
[org.clojure/tools.cli "0.4.2"]
22+
[org.clojure/tools.cli "1.0.N"]
2123
```
2224
[Maven](http://maven.apache.org/) dependency information:
2325
```xml
2426
<dependency>
2527
<groupId>org.clojure</groupId>
2628
<artifactId>tools.cli</artifactId>
27-
<version>0.4.2</version>
29+
<version>1.0.N</version>
2830
</dependency>
2931
```
3032
The 0.4.x series of tools.cli supports use with `clj`/`deps.edn` and brings
@@ -327,7 +329,8 @@ only `parse-opts` and `summarize` were available.
327329

328330
## Change Log
329331

330-
* Release 1.0.0 in progress
332+
* Release 1.0.N in progress
333+
* Switch to 1.0.x versioning.
331334
* Document the `:missing` option [TCLI-95](http://clojure.atlassian.net/browse/TCLI-95).
332335
* Release 0.4.2 2019-03-26
333336
* Restore ClojureScript compatibility (Martin Klepsch)

0 commit comments

Comments
 (0)