Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gzuidhof committed Jan 20, 2025
1 parent 13c19b6 commit 64174ba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,13 @@ docker run -p 1090:1090 friendlycaptcha/sdk-testserver:latest

Make sure you are running the SDK Testserver first

### Minting a release

Bump the version in `sdk/build.gradle`, run `./gradlew :sdk:build`, merge the changes to `main` and create a new release on GitHub.

## Example

A standalone example can be found in [src/main/java/com/friendlycaptcha/examples/Example.java](src/main/java/com/friendlycaptcha/examples/Example.java).
A standalone example can be found in [Example.java](examples/src/main/java/com/friendlycaptcha/jvm/examples/Example.java).

This example serves a HTML form with a Friendly Captcha widget and validates the user's response.

Expand Down
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

ext {
sdkVersion = "0.1.0"
sdkVersion = "1.0.0"
sdkName = "friendly-captcha-jvm"
}

Expand Down
4 changes: 2 additions & 2 deletions sdk/src/main/java/com/friendlycaptcha/jvm/sdk/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package com.friendlycaptcha.jvm.sdk;

public final class Version {
public static final String SDK_VERSION = "0.1.0";
public static final String SDK_VERSION = "1.0.0";
public static final String SDK_NAME = "friendly-captcha-jvm";
public static final String SDK_IDENTIFIER = "friendly-captcha-jvm@0.1.0";
public static final String SDK_IDENTIFIER = "friendly-captcha-jvm@1.0.0";
}

0 comments on commit 64174ba

Please sign in to comment.