diff --git a/CHANGELOG.md b/CHANGELOG.md index 8298207..f6bcb1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + ## [1.17.0] - 2025-12-15 ### Added - Add the APIs of the following add-ons: @@ -232,6 +234,7 @@ of the alert (zaproxy/zaproxy#1341), older methods were deprecated. - First version as "stand alone library", it was migrated from the [zaproxy repository](https://github.com/zaproxy/zaproxy) and released to Maven Central. +[Unreleased]: https://github.com/zaproxy/zap-api-java/compare/v1.17.0...HEAD [1.17.0]: https://github.com/zaproxy/zap-api-java/compare/v1.16.0...v1.17.0 [1.16.0]: https://github.com/zaproxy/zap-api-java/compare/v1.15.0...v1.16.0 [1.15.0]: https://github.com/zaproxy/zap-api-java/compare/v1.14.0...v1.15.0 diff --git a/build.gradle.kts b/build.gradle.kts index 3bf93eb..e36d43f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,8 +14,8 @@ subprojects { group = "org.zaproxy" - version = "1.17.0" - extra["versionBC"] = "1.16.0" + version = "1.18.0-SNAPSHOT" + extra["versionBC"] = "1.17.0" java { if (System.getenv("RELEASE") != null) { diff --git a/subprojects/zap-clientapi/zap-clientapi.gradle b/subprojects/zap-clientapi/zap-clientapi.gradle index cd11716..8fa565e 100644 --- a/subprojects/zap-clientapi/zap-clientapi.gradle +++ b/subprojects/zap-clientapi/zap-clientapi.gradle @@ -86,8 +86,8 @@ build.dependsOn 'uberJar' publishing { repositories { maven { - def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/" - def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/" + def releasesRepoUrl = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/" + def snapshotsRepoUrl = "https://central.sonatype.com/repository/maven-snapshots/" url = version.endsWith("SNAPSHOT") ? snapshotsRepoUrl : releasesRepoUrl if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {