Skip to content

Commit 8e23e16

Browse files
committed
update to latest parent pom
1 parent 4268a11 commit 8e23e16

File tree

3 files changed

+13
-17
lines changed

3 files changed

+13
-17
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,33 @@ Contracts programming for Clojure.
55

66
Project status: [Inactive](https://clojure.org/community/contrib_libs). The author (fogus) considers this library to have been superseded by [clojure.spec](https://github.com/clojure/spec.alpha).
77

8-
Based on [Trammel](http://github.com/fogus/trammel) and [clojure-contracts](http://github.com/dnaumov/clojure-contracts).
8+
Based on [Trammel](https://github.com/fogus/trammel) and [clojure-contracts](https://github.com/dnaumov/clojure-contracts).
99

1010

1111
Releases and Dependency Information
1212
========================================
1313

14-
Latest stable release: 0.0.6
14+
Latest stable release: 0.0.7
1515

16-
* [All Released Versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22core.contracts%22)
16+
* [All Released Versions](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22core.contracts%22)
1717

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

2020
[CLI/`deps.edn`](https://clojure.org/reference/deps_and_cli) dependency information:
2121
```clojure
22-
org.clojure/core.contracts {:mvn/version "0.0.6"}
22+
org.clojure/core.contracts {:mvn/version "0.0.7"}
2323
```
2424

2525
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
2626

27-
[org.clojure/core.contracts "0.0.6"]
27+
[org.clojure/core.contracts "0.0.7"]
2828

2929
[Maven](http://maven.apache.org/) dependency information:
3030

3131
<dependency>
3232
<groupId>org.clojure</groupId>
3333
<artifactId>core.contracts</artifactId>
34-
<version>0.0.6</version>
34+
<version>0.0.7</version>
3535
</dependency>
3636

3737

@@ -76,6 +76,8 @@ Developer Information
7676
Change Log
7777
====================
7878

79+
* Release 0.0.7 on 2026.01.02
80+
* Update to latest parent pom
7981
* Release 0.0.6 on 2016.08.20
8082
* Bump dependency on newest version of core.unify, which fixes a compilation problem with Clojure 1.9.0-alpha11
8183
* Release 0.0.5 on 2013.06.28

pom.xml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@
1818
<parent>
1919
<groupId>org.clojure</groupId>
2020
<artifactId>pom.contrib</artifactId>
21-
<version>1.3.0</version>
21+
<version>1.4.0</version>
2222
</parent>
2323

2424
<developers>
2525
<developer>
2626
<id>fogus</id>
2727
<name>Fogus</name>
28-
<url>http://fogus.me</url>
28+
<url>https://fogus.me</url>
2929
</developer>
3030
</developers>
3131

3232
<dependencies>
3333
<dependency>
3434
<groupId>org.clojure</groupId>
3535
<artifactId>core.unify</artifactId>
36-
<version>0.6.0</version>
36+
<version>0.7.1</version>
3737
</dependency>
3838
</dependencies>
3939

@@ -43,10 +43,4 @@
4343
<tag>HEAD</tag>
4444
</scm>
4545

46-
<repositories>
47-
<repository>
48-
<id>sonatype-oss-snapshots</id>
49-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
50-
</repository>
51-
</repositories>
5246
</project>

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(defproject core.contracts "0.0.5-SNAPSHOT"
22
:description "Contracts programming for Clojure."
3-
:dependencies [[org.clojure/clojure "1.10.1"]
4-
[org.clojure/core.unify "0.5.7"]]
3+
:dependencies [[org.clojure/clojure "1.11.4"]
4+
[org.clojure/core.unify "0.7.1"]]
55
:plugins [[lein-swank "1.4.4"]
66
[lein-marginalia "0.7.1"]]
77
:profiles {:1.2 {:dependencies [[org.clojure/clojure "1.2.0"]]}

0 commit comments

Comments
 (0)