Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 861 Bytes

DEPLOY.md

File metadata and controls

27 lines (25 loc) · 861 Bytes

Steps to deploy

Preparation

  1. Make sure everything is ready for pod publish.
    pod lib lint
  2. Run tests
  3. Increase the version in the ConfigCat.podspec file (spec.version), the Utils.swift file and may need to update ConfigCat.xcconfig (MARKETING_VERSION) as well.
  4. Commit & push.

Publish

Use the same version for the git tag as in the podspec.

  • Via git tag

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

      Example: git tag 2.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.

CocoaPods

Make sure the new version is available on CocoaPods.