Skip to content

Commit

Permalink
Merge pull request #12 from faberNovel/release/v1.1.0
Browse files Browse the repository at this point in the history
Release 1.1.0
  • Loading branch information
alexandre-pod authored Jul 1, 2024
2 parents 673444e + 2e43058 commit 6c714a7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ADCoordinator.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ADCoordinator'
s.version = '1.0.2'
s.version = '1.1.0'
s.summary = 'An implementation of the coordinator pattern used at Fabernovel.'
s.description = <<-DESC
Coordinators are a powerful pattern to decouple the navigation from the view controllers in an app.
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.1.0] - 2024-07-01

### Added
- Add Support for Swift Concurrency

Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- ADCoordinator (2.0.0)
- ADCoordinator (1.1.0)
- SwiftLint (0.55.1)

DEPENDENCIES:
Expand All @@ -15,7 +15,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
ADCoordinator: 4a18c723ed2f548b4c593d04aba1c5da3c518723
ADCoordinator: fb6068c5ec06697a7e09a7c7b913ef6e91d9a79f
SwiftLint: 3fe909719babe5537c552ee8181c0031392be933

PODFILE CHECKSUM: 210eb06c4e31fdf79f83518389e10b2dea4f6a32
Expand Down
7 changes: 7 additions & 0 deletions MAINTAINER.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

## How to release a version

- create release branch `release/vA.B.C`
- run `bundle exec fastlane prepare_release`, this will update the version number in the podspec based on the release branch.
- merge the automatically created PR
- manually trigger the publish_release workflow on master branch
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ def update_changelog(target_version)
changelog_path = ENV["CHANGELOG"]
stamp_changelog(
changelog_path: changelog_path,
section_identifier: "#{target_version}"
section_identifier: "#{target_version}",
stamp_datetime_format: '%F'
)

git_add(path: changelog_path)
Expand Down

0 comments on commit 6c714a7

Please sign in to comment.