Skip to content

Commit

Permalink
bumps version to 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pappist committed Apr 10, 2024
1 parent 4e732f8 commit f8dcde5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pipeline {
expression { params.RELEASE == true }
}
steps {
sh "./gradlew clean collectGithubRelease -Prelease=true"
sh "./gradlew clean collectGithubRelease "
withCredentials([usernamePassword(
credentialsId: 'github-access-token',
passwordVariable: 'GITHUB_RELEASE_TOKEN',
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ Running the jar without arguments prints out the usage instructions.
- You can add `-Djavax.net.debug=all` to check whether Java loaded the certificate correctly
- Make sure that `ssl` is enabled in CLI arguments

## Bypass host verification and trust all certificates by default

At your own risk you can use the `--trustAll` option to disable validation.

## Running from source

1. Clone this repository or download the sources for a [release](https://github.com/IncQueryLabs/repo-crawler/releases).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext.jacksonDatabindVersion = findProperty("jacksonDatabindVersion") ?: '2.15.3'

ext {
buildTimestamp = timestampFormat.format(buildTime)
baseVersion = '1.2'
baseVersion = '1.3'
}

def computedVersion = baseVersion + '-' + buildTimestamp
Expand Down

0 comments on commit f8dcde5

Please sign in to comment.