Skip to content

Commit 1664c6a

Browse files
Update to 1.0.7
1 parent df7257e commit 1664c6a

File tree

18 files changed

+33
-16
lines changed

18 files changed

+33
-16
lines changed

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### v1.0.7
2+
Fix: Fix bug in wrapper that I introduced in last version. Oh well...
3+
14
### v1.0.6
25
Note: Improve the way the host is determined. External URL should not need to be set when not using a reverse proxy
36
Note: Remove PyYAML dependency from wrapper

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.0.7-SNAPSHOT</version>
8+
<version>1.0.7</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.0.7-SNAPSHOT</version>
86+
<version>1.0.7</version>
8787
</dependency>
8888

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

core/src/main/resources/changelog.json

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
[
2+
{
3+
"version": "v1.0.7",
4+
"changes": [
5+
{
6+
"type": "fix",
7+
"text": "Fix bug in wrapper that I introduced in last version. Oh well..."
8+
}
9+
]
10+
},
211
{
312
"version": "v1.0.6",
413
"changes": [

misc/build-and-release.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ call git commit -am "Set snapshot to %2"
7373
if not "%ERRORLEVEL%" == "0" goto error
7474

7575
echo Pushing to repo ***********************************************************************
76-
call git commit push
76+
call git push
7777
if not "%ERRORLEVEL%" == "0" goto error
7878

7979

misc/docker/.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ target/
22
!.mvn/wrapper/maven-wrapper.jar
33
*.swp
44
lib/
5-
*.py
5+
*.py
6+
readme.md
7+
changelog.md

misc/docker/builddocker.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
rm ./lib/*.jar
22
cp ../../other/wrapper/nzbhydra2wrapper.py .
33
cp ../../core/target/*-exec*.jar ./lib
4+
cp ../../readme.md .
5+
cp ../../changelog.md .
46
rm ./lib/*SNAPSHOT*.jar
57
echo -n "Enter version"
68
read VERSION

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.0.7-SNAPSHOT</version>
48+
<version>1.0.7</version>
4949
</dependency>
5050

5151
<dependency>

other/wrapper/nzbhydra2wrapper.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -328,10 +328,11 @@ def startup():
328328
else:
329329
logger.info("No file nzbhydra.yml found. Using 128M XMX")
330330
xmx = 128
331+
xmx = str(xmx)
331332
if xmx.lower().endswith("m"):
332333
logger.info("Removing superfluous M from XMX value " + xmx)
333334
xmx = xmx[:-1]
334-
java_arguments = ["-Xmx" + str(xmx) + "M", "-DfromWrapper", "-XX:TieredStopAtLevel=1", "-noverify"]
335+
java_arguments = ["-Xmx" + xmx + "M", "-DfromWrapper", "-XX:TieredStopAtLevel=1", "-noverify"]
335336
if not args.nocolors and not isWindows:
336337
java_arguments.append("-Dspring.output.ansi.enabled=ALWAYS")
337338
if args.debug:

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.0.7-SNAPSHOT</version>
7+
<version>1.0.7</version>
88

99
<modules>
1010
<module>shared</module>
0 Bytes
Binary file not shown.

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.0.7-SNAPSHOT</version>
8+
<version>1.0.7</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.0.7-SNAPSHOT</version>
18+
<version>1.0.7</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.0.7-SNAPSHOT</version>
7+
<version>1.0.7</version>
88
</parent>
99

1010
<artifactId>releases</artifactId>
Binary file not shown.
50 Bytes
Binary file not shown.

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.0.7-SNAPSHOT</version>
8+
<version>1.0.7</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.0.7-SNAPSHOT</version>
18+
<version>1.0.7</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.0.7-SNAPSHOT</version>
8+
<version>1.0.7</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.0.7-SNAPSHOT</version>
7+
<version>1.0.7</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.0.7-SNAPSHOT</version>
8+
<version>1.0.7</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.0.7-SNAPSHOT</version>
34+
<version>1.0.7</version>
3535
</dependency>
3636

3737
<dependency>

0 commit comments

Comments
 (0)