Skip to content

Commit

Permalink
Prepare 1.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tibetiroka committed Jun 4, 2024
1 parent 073995b commit 9b6d81d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ permissions:

jobs:
test_release:
name: Test release status
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run release tests
run: bash src/test/release_tests.java '{{ inputs.release_version }}'
run: bash src/test/release_tests.sh {{ inputs.release_version }}

release_linux:
name: Release - Linux
Expand Down
2 changes: 1 addition & 1 deletion debian-control-linter.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH debian\-control\-linter 1 "19 Apr 2024" "version 1.1.1"
.TH debian\-control\-linter 1 "4 Jun 2024" "version 1.1.2"

.SH NAME
debian\-control\-linter \- a linter for various debian control files
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<groupId>com.tibetiroka</groupId>
<artifactId>debian-control-linter</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>

<properties>
<mainClass>com.tibetiroka.deblint.Main</mainClass>
Expand All @@ -27,9 +27,9 @@
<jakarta-mail.version>2.1.3</jakarta-mail.version>
<junit.version>5.10.2</junit.version>
<junit-launcher.version>1.10.2</junit-launcher.version>
<javadoc-plugin.version>3.6.3</javadoc-plugin.version>
<javadoc-plugin.version>3.7.0</javadoc-plugin.version>
<source-plugin.version>3.3.1</source-plugin.version>
<jar-plugin.version>3.4.0</jar-plugin.version>
<jar-plugin.version>3.4.1</jar-plugin.version>
<resources-plugin.version>3.3.1</resources-plugin.version>
<assembly-plugin.version>3.6.0</assembly-plugin.version>
<surefire-plugin.version>3.2.5</surefire-plugin.version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/tibetiroka/deblint/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Main {
/**
* The current version of the project
*/
public static final String VERSION = "1.1.1";
public static final String VERSION = "1.1.2";
/**
* Stores whether the app is running inside a native image.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/test/release_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if [ "$release_version" != "$version" ]; then
fi

# Verify that the version specified is the latest
latest=`echo -e "v${version}\\n${remote_tags}" | sort -t '.' -k1,1n -k2,2n -k3,3n | tail -n1`
latest=`echo -e "${version}\\n${remote_tags}" | sort -t '.' -k1,1n -k2,2n -k3,3n | tail -n1`
if [ "$latest" != "$version" ]; then
echo "Invalid release version: there is a newer release"
((error_count++))
Expand Down

0 comments on commit 9b6d81d

Please sign in to comment.