Skip to content

Commit 43b42e7

Browse files
authored
Merge pull request #143 from thc202/bump-version
Prepare next dev iteration and update Maven URLs
2 parents 5637f04 + c86e179 commit 43b42e7

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
79
## [1.17.0] - 2025-12-15
810
### Added
911
- Add the APIs of the following add-ons:
@@ -232,6 +234,7 @@ of the alert (zaproxy/zaproxy#1341), older methods were deprecated.
232234
- First version as "stand alone library", it was migrated from the [zaproxy repository](https://github.com/zaproxy/zaproxy)
233235
and released to Maven Central.
234236

237+
[Unreleased]: https://github.com/zaproxy/zap-api-java/compare/v1.17.0...HEAD
235238
[1.17.0]: https://github.com/zaproxy/zap-api-java/compare/v1.16.0...v1.17.0
236239
[1.16.0]: https://github.com/zaproxy/zap-api-java/compare/v1.15.0...v1.16.0
237240
[1.15.0]: https://github.com/zaproxy/zap-api-java/compare/v1.14.0...v1.15.0

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ subprojects {
1414

1515
group = "org.zaproxy"
1616

17-
version = "1.17.0"
18-
extra["versionBC"] = "1.16.0"
17+
version = "1.18.0-SNAPSHOT"
18+
extra["versionBC"] = "1.17.0"
1919

2020
java {
2121
if (System.getenv("RELEASE") != null) {

subprojects/zap-clientapi/zap-clientapi.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ build.dependsOn 'uberJar'
8686
publishing {
8787
repositories {
8888
maven {
89-
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
90-
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
89+
def releasesRepoUrl = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
90+
def snapshotsRepoUrl = "https://central.sonatype.com/repository/maven-snapshots/"
9191
url = version.endsWith("SNAPSHOT") ? snapshotsRepoUrl : releasesRepoUrl
9292

9393
if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {

0 commit comments

Comments
 (0)