Skip to content

Commit a895810

Browse files
committed
Update after 0.8.0 release
Signed-off-by: Appu Goundan <[email protected]>
1 parent b9a9bab commit a895810

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

build-logic/publishing/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ dependencies {
1010
implementation(project(":basics"))
1111
implementation(project(":jvm"))
1212
implementation("dev.sigstore.build-logic:gradle-plugin")
13-
implementation("dev.sigstore:sigstore-gradle-sign-plugin:0.7.0")
13+
implementation("dev.sigstore:sigstore-gradle-sign-plugin:0.8.0")
1414
implementation("com.gradle.plugin-publish:com.gradle.plugin-publish.gradle.plugin:1.2.1")
1515
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ systemProp.org.gradle.kotlin.dsl.precompiled.accessors.strict=true
44

55
group=dev.sigstore
66
# remember to update SigstoreSignExtension.kt and build-logic/publishing/build.gradle.kts when updating this
7-
version=0.8.0
7+
version=0.9.0

sigstore-gradle/README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22

33
A Gradle plugin for signing artifacts with Sigstore.
44

5-
## The current state
6-
7-
`dev.sigstore.sign` has no releases yet.
8-
Signature format uses [Sigstore bundle](https://github.com/sigstore/cosign/pull/2204) JSON which is still experimental.
5+
`dev.sigstore.sign` is available on the gradle plugin portal.
6+
Signature format uses [Sigstore bundle](https://github.com/sigstore/protobuf-specs/blob/main/protos/sigstore_bundle.proto) JSON as the output format.
97

108
## Requirements
119

@@ -46,7 +44,7 @@ plugins {
4644

4745
dependencies {
4846
// Override sigstore-java clients
49-
sigstoreClient("dev.sigstore:sigstore-java:0.1.0")
47+
sigstoreClient("dev.sigstore:sigstore-java:<alternate-version>")
5048
}
5149

5250
sigstoreSign {
@@ -121,8 +119,8 @@ val zip by tasks.registering(Zip::class) {
121119

122120
### Signature format
123121

124-
The signature uses [Sigstore bundle](https://github.com/sigstore/cosign/pull/2204) JSON
125-
stored as `.sigstore` file.
122+
The signature uses [Sigstore bundle](https://github.com/sigstore/protobuf-specs/blob/main/protos/sigstore_bundle.proto) JSON
123+
stored as `.sigstore.json` file.
126124

127125
The file includes all the information for offline signature verification.
128126

@@ -136,8 +134,8 @@ Provides `SigstoreSignFilesTask` task for signing files in Sigstore.
136134
The plugin adds no tasks by default.
137135

138136
Properties:
139-
* `dev.sigstore.sign.remove.sigstore.asc` (since 0.6.0, default: `true`). Removes `.sigstore.asc` files from the publication.
140-
Sonatype OSSRH supports publishing `.sigstore` signatures, and it does not require `.sigstore.asc` files, so
137+
* `dev.sigstore.sign.remove.sigstore.asc` (since 0.6.0, default: `true`). Removes `.sigstore.json.asc` files from the publication.
138+
Sonatype OSSRH supports publishing `.sigstore.json` signatures, and it does not require `.sigstore.json.asc` files, so
141139
`dev.sigstore.sign` plugin removes them by default. If you need to sign all the files, set this property to `false`.
142140

143141
Extensions:

sigstore-gradle/sigstore-gradle-sign-base-plugin/src/main/kotlin/dev/sigstore/sign/SigstoreSignExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ abstract class SigstoreSignExtension(private val project: Project) {
4444
abstract val sigstoreJavaVersion : Property<String>
4545

4646
init {
47-
sigstoreJavaVersion.convention("0.8.0")
47+
sigstoreJavaVersion.convention("0.9.0")
4848
(this as ExtensionAware).extensions.create<OidcClientExtension>(
4949
"oidcClient",
5050
project.objects,

0 commit comments

Comments
 (0)