Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.1 #10

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.commitizen]
version_name = "semver"
version = "1.0.0"
version = "1.0.1"
version_files = [
"Sources/PrimerNolPaySDK/Classes/version.swift:let PrimerNolPayVersion",
"PrimerNolPaySDK.podspec:s.version"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1 (2023-11-07)
- update TransitSDK version to 3.1.11
- make SDKs version info public

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Strange... CHANGELOG is empty.
I think you didnt "Squash and merge" the previous PRs, so the conventional commits aren't in the history if you look at history on master.

Note: This means we dont need one or more conventional commits to. make a release, looks like commitizen will bump the patch in the absence of any conventional commits - its just the CHANGELOG that suffers.

cc @semirp

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe I just merged 🤦.
Note to self, SquashAndMerge next time.

I updated the changelog manually. @NQuinn27

## 1.0.0 (2023-11-02)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion PrimerNolPaySDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'PrimerNolPaySDK'
s.version = '1.0.0'
s.version = '1.0.1'
s.summary = 'A wrapper for the Nol SDK'
s.description = <<-DESC
A wrapper around the Nol payment SDK.
Expand Down
2 changes: 1 addition & 1 deletion Sources/PrimerNolPaySDK/Classes/version.swift
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
let PrimerNolPayVersion = "1.0.0"
let PrimerNolPayVersion = "1.0.1"
let TransitSDKVersion = "3.1.11"