Skip to content

Commit 1d4d734

Browse files
committed
Update pom.xml and add CHANGELOG.md placeholders
1 parent 4548a49 commit 1d4d734

File tree

2 files changed

+38
-18
lines changed

2 files changed

+38
-18
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Unreleased
2+
3+
## Added
4+
5+
## Fixed
6+
7+
## Changed
8+
19
# 2.1.121 (2022-05-13 / bb0dd63)
210

311
## Fixed

pom.xml

Lines changed: 30 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemalocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>lambdaisland</groupId>
55
<artifactId>deep-diff2</artifactId>
6-
<version>2.0.108</version>
6+
<version>2.1.121</version>
77
<name>deep-diff2</name>
88
<description>Recursively compare Clojure or ClojureScript data structures, and produce a colorized diff of the result.</description>
99
<url>https://github.com/lambdaisland/deep-diff2</url>
@@ -12,6 +12,9 @@
1212
<name>Lambda Island</name>
1313
<url>https://lambdaisland.com</url>
1414
</organization>
15+
<properties>
16+
<project class="build sourceEncoding">UTF-8</project>
17+
</properties>
1518
<licenses>
1619
<license>
1720
<name>Eclipse Public License 1.0</name>
@@ -22,28 +25,28 @@
2225
<url>https://github.com/lambdaisland/deep-diff2</url>
2326
<connection>scm:git:git://github.com/lambdaisland/deep-diff2.git</connection>
2427
<developerConnection>scm:git:ssh://[email protected]/lambdaisland/deep-diff2.git</developerConnection>
25-
<tag>1fabaa614ad2a2a705720386c5fc3635b1dead0b</tag>
28+
<tag>4548a492c08fb2f5e09db9f757a95a379a52aa02</tag>
2629
</scm>
2730
<dependencies>
28-
<dependency>
29-
<groupId>lambdaisland</groupId>
30-
<artifactId>clj-diff</artifactId>
31-
<version>1.1.58</version>
32-
</dependency>
3331
<dependency>
3432
<groupId>fipp</groupId>
3533
<artifactId>fipp</artifactId>
36-
<version>0.6.23</version>
37-
</dependency>
38-
<dependency>
39-
<groupId>mvxcvi</groupId>
40-
<artifactId>arrangement</artifactId>
41-
<version>1.2.1</version>
34+
<version>0.6.26</version>
4235
</dependency>
4336
<dependency>
4437
<groupId>org.clojure</groupId>
4538
<artifactId>core.rrb-vector</artifactId>
46-
<version>0.1.1</version>
39+
<version>0.1.2</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>lambdaisland</groupId>
43+
<artifactId>clj-diff</artifactId>
44+
<version>1.2.62</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>mvxcvi</groupId>
48+
<artifactId>arrangement</artifactId>
49+
<version>2.0.0</version>
4750
</dependency>
4851
</dependencies>
4952
<build>
@@ -60,22 +63,31 @@
6063
</resource>
6164
</resources>
6265
<plugins>
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-compiler-plugin</artifactId>
69+
<version>3.8.1</version>
70+
<configuration>
71+
<source>1.8</source>
72+
<target>1.8</target>
73+
</configuration>
74+
</plugin>
6375
<plugin>
6476
<groupId>org.apache.maven.plugins</groupId>
6577
<artifactId>maven-jar-plugin</artifactId>
66-
<version>2.4</version>
78+
<version>3.2.0</version>
6779
<configuration>
6880
<archive>
6981
<manifestEntries>
70-
<git-revision>1fabaa614ad2a2a705720386c5fc3635b1dead0b</git-revision>
82+
<git-revision>4548a492c08fb2f5e09db9f757a95a379a52aa02</git-revision>
7183
</manifestEntries>
7284
</archive>
7385
</configuration>
7486
</plugin>
7587
<plugin>
7688
<groupId>org.apache.maven.plugins</groupId>
7789
<artifactId>maven-gpg-plugin</artifactId>
78-
<version>1.5</version>
90+
<version>1.6</version>
7991
<executions>
8092
<execution>
8193
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)