Skip to content

Commit efbcf35

Browse files
committed
Update to 1.2.2
1 parent b49bb91 commit efbcf35

File tree

10 files changed

+19
-13
lines changed

10 files changed

+19
-13
lines changed

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### v1.2.2
2+
Note: I've added debug logging to the wrapper for better, well, debugging of problems related to updating. To enable debug logging create a file DEBUG in the data folder and restart the program. As before, any non-docker installations will need to update the wrapper files manually. I'm working on a better solution.
3+
Fix: Adding binsearch/NZBIndex/anizb would fail the connection check
4+
Fix: Periodic check of downloader status was not executed as expected, resulting in incomplete status NZB reports in the history
5+
Fix: Logger sometimes swallowed information when anonymizing data
6+
17
### v1.2.1
28
Note: I've changed how some data is kept in the database. Deleting an indexer will remove it completely from the database, also deleting all related stats, search results and downloads. This might take a while on the next startup or whenever you delete an indexer with many related entries
39
Feature: Option to delete backups after x weeks. 4 is the default

core/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.nzbhydra</groupId>
77
<artifactId>nzbhydra2</artifactId>
8-
<version>1.2.2-SNAPSHOT</version>
8+
<version>1.2.2</version>
99
</parent>
1010

1111
<artifactId>core</artifactId>
@@ -83,7 +83,7 @@
8383
<dependency>
8484
<groupId>org.nzbhydra</groupId>
8585
<artifactId>mapping</artifactId>
86-
<version>1.2.2-SNAPSHOT</version>
86+
<version>1.2.2</version>
8787
</dependency>
8888

8989
<!-- spring (boot) -->

other/mockserver/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>org.nzbhydra</groupId>
4747
<artifactId>mapping</artifactId>
48-
<version>1.2.2-SNAPSHOT</version>
48+
<version>1.2.2</version>
4949
</dependency>
5050

5151
<dependency>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.nzbhydra</groupId>
55
<artifactId>nzbhydra2</artifactId>
66
<packaging>pom</packaging>
7-
<version>1.2.2-SNAPSHOT</version>
7+
<version>1.2.2</version>
88

99
<modules>
1010
<module>shared</module>

releases/linux-release/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.nzbhydra</groupId>
77
<artifactId>releases</artifactId>
8-
<version>1.2.2-SNAPSHOT</version>
8+
<version>1.2.2</version>
99
</parent>
1010

1111
<artifactId>linux-release</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>org.nzbhydra</groupId>
1717
<artifactId>core</artifactId>
18-
<version>1.2.2-SNAPSHOT</version>
18+
<version>1.2.2</version>
1919
</dependency>
2020
</dependencies>
2121

releases/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.nzbhydra</groupId>
66
<artifactId>nzbhydra2</artifactId>
7-
<version>1.2.2-SNAPSHOT</version>
7+
<version>1.2.2</version>
88
</parent>
99

1010
<artifactId>releases</artifactId>

releases/windows-release/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.nzbhydra</groupId>
77
<artifactId>releases</artifactId>
8-
<version>1.2.2-SNAPSHOT</version>
8+
<version>1.2.2</version>
99
</parent>
1010

1111
<artifactId>windows-release</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>org.nzbhydra</groupId>
1717
<artifactId>core</artifactId>
18-
<version>1.2.2-SNAPSHOT</version>
18+
<version>1.2.2</version>
1919
</dependency>
2020
</dependencies>
2121

shared/mapping/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.nzbhydra</groupId>
77
<artifactId>shared</artifactId>
8-
<version>1.2.2-SNAPSHOT</version>
8+
<version>1.2.2</version>
99
</parent>
1010

1111
<artifactId>mapping</artifactId>

shared/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.nzbhydra</groupId>
66
<artifactId>nzbhydra2</artifactId>
7-
<version>1.2.2-SNAPSHOT</version>
7+
<version>1.2.2</version>
88
</parent>
99

1010
<artifactId>shared</artifactId>

tests/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.nzbhydra</groupId>
77
<artifactId>nzbhydra2</artifactId>
8-
<version>1.2.2-SNAPSHOT</version>
8+
<version>1.2.2</version>
99
</parent>
1010

1111
<artifactId>tests</artifactId>
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>org.nzbhydra</groupId>
3333
<artifactId>core</artifactId>
34-
<version>1.2.2-SNAPSHOT</version>
34+
<version>1.2.2</version>
3535
</dependency>
3636

3737
<dependency>

0 commit comments

Comments
 (0)