Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.32 KB

File metadata and controls

49 lines (34 loc) · 1.32 KB

Steps to deploy

Preparation

  1. Run tests
  2. Increase the version in the gradle.properties src/main/java/com.configcat/Constants.java file.
  3. Commit & Push

Publish

Use the same version for the git tag as in the properties file.

  • Via git tag

    1. Create a new version tag.
      git tag v[MAJOR].[MINOR].[PATCH]

      Example: git tag v2.5.5

    2. Push the tag.
      git push origin --tags
  • Via Github release

    Create a new Github release with a new version tag and release notes.

Sync

  1. Log in to Maven Central Repository and follow these steps:
    1. Go to the Publish page and select the version you published.
    2. Click Publish. The process might take some time, click Refresh to get the latest state.
  2. Make sure the new version is available on Maven Central.

Update import examples in local README.md

Update code examples in ConfigCat Dashboard projects

Steps to connect your application

  1. Update Maven import examples.
  2. Update Gradle import examples.

Update import examples in Docs

Update samples

Update and test sample apps with the new SDK version.