Skip to content

Commit

Permalink
prep for 1.3.113
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <[email protected]>
  • Loading branch information
seancorfield committed Jan 23, 2025
1 parent 2f7e1c1 commit 9fc5091
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Change Log

* Release 1.2.next in progress
* Release 1.3.113 on 2025-01-23
* In builders, for overloaded setters (for which we have matching properties), try to pick the "obviously better" match (using `instance?` against the property value), and only throw if we can't pick one [JDATA-25](https://clojure.atlassian.net/browse/JDATA-25).
* In builders, ignore setters for which we do not have matching properties [JDATA-24](https://clojure.atlassian.net/browse/JDATA-24).

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ clojure-contrib

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.2.107
Latest stable release: 1.3.113

* [All Released Versions](https://search.maven.org/#search%7Cga%7C1%7Corg.clojure%20java.data)
* [Development Snapshot Versions](https://repository.sonatype.org/index.html#nexus-search;gav~org.clojure~java.data~~~)

### [CLI/`deps.edn`](https://clojure.org/reference/deps_and_cli) dependency information:

```clojure
org.clojure/java.data {:mvn/version "1.2.107"}
org.clojure/java.data {:mvn/version "1.3.113"}
```

### Leiningen

```clojure
[org.clojure/java.data "1.2.107"]
[org.clojure/java.data "1.3.113"]
```

### Maven
Expand All @@ -31,7 +31,7 @@ org.clojure/java.data {:mvn/version "1.2.107"}
<dependency>
<groupId>org.clojure</groupId>
<artifactId>java.data</artifactId>
<version>1.2.107</version>
<version>1.3.113</version>
</dependency>
```

Expand Down

0 comments on commit 9fc5091

Please sign in to comment.