Skip to content
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
46 changes: 46 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: update-changelog
on:
push:
branches:
- main
permissions:
contents: write
jobs:
changelog:
name: Update CHANGELOG
runs-on: ubuntu-latest
timeout-minutes: 15
if: |
!startsWith(github.event.head_commit.message, '[Release]') &&
!startsWith(github.event.head_commit.message, 'chore(changelog): update CHANGELOG.md') &&
github.event.head_commit.author.name != 'github-actions[bot]'
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: jdx/mise-action@v3
with:
experimental: true
- name: Generate CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: git cliff --config ./cliff.toml -o ./CHANGELOG.md
- name: Check for CHANGELOG changes
id: changelog-changes
run: |
if git diff --quiet CHANGELOG.md; then
echo "No changes in CHANGELOG.md"
echo "has-changes=false" >> $GITHUB_OUTPUT
else
echo "CHANGELOG.md has changes"
echo "has-changes=true" >> $GITHUB_OUTPUT
fi
- name: Commit CHANGELOG
uses: stefanzweifel/git-auto-commit-action@v7
if: steps.changelog-changes.outputs.has-changes == 'true'
with:
commit_message: "chore(changelog): update CHANGELOG.md"
commit_options: '--no-verify'
file_pattern: CHANGELOG.md
commit_user_name: github-actions[bot]
commit_user_email: github-actions[bot]@users.noreply.github.com
105 changes: 63 additions & 42 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,67 +1,88 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

#### 1.x Releases
- `1.2.x` Releases - [1.2.0](#120)
- `1.1.x` Releases - [1.1.0](#110) | [1.1.1](#111)
- `1.1.x` Releases - [1.1.1](#111) | [1.1.0](#110)
- `1.0.x` Releases - [1.0.0](#100)

---
## [Unreleased]

### Uncategorized Changes
- Add renovate.json
- Contributed by [@renovate[bot]](https://github.com/renovate[bot]) in Pull Request [#23](https://github.com/space-code/package-template/pull/23).
- Bump actions/checkout from 4 to 5
- Contributed by [@dependabot[bot]](https://github.com/dependabot[bot]) in Pull Request [#20](https://github.com/space-code/package-template/pull/20).

### New Contributors
* @renovate[bot] made their first contribution in [#23](https://github.com/space-code/package-template/pull/23)

## [1.2.0](https://github.com/space-code/package-template/releases/tag/1.2.0)
Released on 2025-04-20

## Added
- Add the `Dependapot` action
- Added in Pull Request [#15](https://github.com/space-code/package-template/pull/15).
Released on 2025-04-20. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/package-template/milestones?state=closed&q=1.2.0).

### Uncategorized Changes
- Fix the replacement of Cookiecutter parameters
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#19](https://github.com/space-code/package-template/pull/19).
- Update `deploy_docc.yml`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#18](https://github.com/space-code/package-template/pull/18).
- Bump actions/cache from 3 to 4
- Contributed by [@dependabot[bot]](https://github.com/dependabot[bot]) in Pull Request [#17](https://github.com/space-code/package-template/pull/17).
- Bump actions/checkout from 3 to 4
- Contributed by [@dependabot[bot]](https://github.com/dependabot[bot]) in Pull Request [#16](https://github.com/space-code/package-template/pull/16).
- Integrate `dependabot.yml`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#15](https://github.com/space-code/package-template/pull/15).
- Update the `post_gen_project` script
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#14](https://github.com/space-code/package-template/pull/14).
- Add `DocC` deployment template
- Added in Pull Request[#13](https://github.com/space-code/package-template/pull/13).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#13](https://github.com/space-code/package-template/pull/13).
- Add additional badges to `README.md`
- Added in Pull Request [#12](https://github.com/space-code/package-template/pull/12).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#12](https://github.com/space-code/package-template/pull/12).
- Add files to comply with community standards
- Added in Pull Request [#11](https://github.com/space-code/package-template/pull/11).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#11](https://github.com/space-code/package-template/pull/11).
- Update the GitHub Actions configuration
- Added in Pull Request [#10](https://github.com/space-code/package-template/pull/10).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#10](https://github.com/space-code/package-template/pull/10).
- Add the Swift Package Index badges to `README.md`
- Added in Pull Request [#9](https://github.com/space-code/package-template/pull/9).
- Update the Ruby version from 2.7 to 3.1.4
- Added in Pull Request [#8](https://github.com/space-code/package-template/pull/8).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#9](https://github.com/space-code/package-template/pull/9).
- Update the Ruby version from `2.7` to `3.1.4`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#8](https://github.com/space-code/package-template/pull/8).
- Implement typo checking
- Added in Pull Request [#7](https://github.com/space-code/package-template/pull/7).

## Updated
- Update the `deploy_docc.yml` action
- Updated in Pull Request [#18](https://github.com/space-code/package-template/pull/18).
- Update the `post_get_project` script
- Updated in Pull Request [#14](https://github.com/space-code/package-template/pull/14).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#7](https://github.com/space-code/package-template/pull/7).

## Fixed
- Fix the replacement of Cookiecutter parameters.
- Fixed in Pull Request [#19](https://github.com/space-code/package-template/pull/19).
### New Contributors
* @dependabot[bot] made their first contribution in [#17](https://github.com/space-code/package-template/pull/17)

## [1.1.1](https://github.com/space-code/package-template/releases/tag/1.1.1)
Released on 2023-12-18

## Fixed
- Implementing the handling of failed tests on GitHub Actions
- Added in Pull Request [#6](https://github.com/space-code/package-template/pull/6).
Released on 2023-12-18. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/package-template/milestones?state=closed&q=1.1.1).

### Uncategorized Changes
- Update the passed parameters in the `xcodebuild` command
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#6](https://github.com/space-code/package-template/pull/6).

## [1.1.0](https://github.com/space-code/package-template/releases/tag/1.1.0)
Released on 2023-12-01

## Added
- Update GitHub Actions configuration
- Added in Pull Request [#4](https://github.com/space-code/package-template/pull/4).
Released on 2023-12-01. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/package-template/milestones?state=closed&q=1.1.0).

### Uncategorized Changes
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#5](https://github.com/space-code/package-template/pull/5).
- Update GitHub Actions Configuration
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#4](https://github.com/space-code/package-template/pull/4).
- Update `SwiftFormat` rules
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#3](https://github.com/space-code/package-template/pull/3).
- Integrate `danger`
- Added in Pull Request [#2](https://github.com/space-code/package-template/pull/2).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#2](https://github.com/space-code/package-template/pull/2).
- Add issues and pull request templates
- Added in Pull Request [#1](https://github.com/space-code/package-template/pull/1).

## Fixed
- Fix deprecated SwiftLint rules
- Added in Pull Request [#3](https://github.com/space-code/package-template/pull/3).
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#1](https://github.com/space-code/package-template/pull/1).

## [1.0.0](https://github.com/space-code/package-template/releases/tag/1.0.0)
Released on 2023-10-12.
[unreleased]: https://github.com/space-code/package-template/compare/1.2.0..HEAD
[1.2.0]: https://github.com/space-code/package-template/compare/1.1.1..1.2.0
[1.1.1]: https://github.com/space-code/package-template/compare/1.1.0..1.1.1
[1.1.0]: https://github.com/space-code/package-template/compare/1.0.0..1.1.0

#### Added
- Initial release of package-template.
- Added by [Nikita Vasilev](https://github.com/nik3212).
Loading