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: 80 additions & 25 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,103 @@
# 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.4.x` Releases - [1.4.0](#140)
- `1.3.x` Releases - [1.3.0](#130)
- `1.2.x` Releases - [1.2.0](#120)
- `1.1.x` Releases - [1.1.0](#110)
- `1.0.x` Releases - [1.0.0](#100)

---
## [Unreleased]

### Features
- Switch from Makefile to Mise
- Implemented by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#19](https://github.com/space-code/flex-ui/pull/19).

### Miscellaneous Tasks
- Add conventional-pr.yml for PR validation
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#20](https://github.com/space-code/flex-ui/pull/20).
- Update config
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#26](https://github.com/space-code/flex-ui/pull/26).

### Uncategorized Changes
- Add renovate.json
- Contributed by [@renovate[bot]](https://github.com/renovate[bot]) in Pull Request [#22](https://github.com/space-code/flex-ui/pull/22).

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

## [1.4.0](https://github.com/space-code/flex-ui/releases/tag/1.4.0)
Released on 2025-05-23.

#### Added
- Update the `setImage(_:)` method signature.
- Added in Pull Request [#12](https://github.com/space-code/flex-ui/pull/12).
- Implement the `setContentHuggingPriority` & `setContentCompressionResistancePriority` methods.
- Added in Pull Request [#13](https://github.com/space-code/flex-ui/pull/13).
Released on 2025-05-23. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/flex-ui/milestones?state=closed&q=1.4.0).

### Uncategorized Changes
- Release `1.4.0`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#15](https://github.com/space-code/flex-ui/pull/15).
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#14](https://github.com/space-code/flex-ui/pull/14).
- Implement the `setContentHuggingPriority` & `setContentCompressionResistancePriority` methods
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#13](https://github.com/space-code/flex-ui/pull/13).
- Update the `setImage(_:)` method signature
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#12](https://github.com/space-code/flex-ui/pull/12).

## [1.3.0](https://github.com/space-code/flex-ui/releases/tag/1.3.0)
Released on 2025-05-08.

#### Added
- Implement a new `setImage` method for the `UIButton` class.
- Added in Pull Request [#9](https://github.com/space-code/flex-ui/pull/9).
- Implement setting an optional value as the UILabel's text.
- Added in Pull Request [#8](https://github.com/space-code/flex-ui/pull/8).
Released on 2025-05-08. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/flex-ui/milestones?state=closed&q=1.3.0).

### Uncategorized Changes
- Release `1.3.0`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#11](https://github.com/space-code/flex-ui/pull/11).
- Update `CHANGELOG.md`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#10](https://github.com/space-code/flex-ui/pull/10).
- Implement a new `setImage` method for the `UIButton` class
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#9](https://github.com/space-code/flex-ui/pull/9).
- Implement setting an optional value as the UILabel's text
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#8](https://github.com/space-code/flex-ui/pull/8).

## [1.2.0](https://github.com/space-code/flex-ui/releases/tag/1.2.0)
Released on 2025-02-15.

#### Added
- Implement the extension for the `UIControl` instance.
- Added in Pull Request [#6](https://github.com/space-code/flex-ui/pull/6).
Released on 2025-02-15. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/flex-ui/milestones?state=closed&q=1.2.0).

### Uncategorized Changes
- Implement the extension for the `UIControl` instance
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#7](https://github.com/space-code/flex-ui/pull/7).
- Implement the extension for the UIControl instance
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#6](https://github.com/space-code/flex-ui/pull/6).

## [1.1.0](https://github.com/space-code/flex-ui/releases/tag/1.1.0)
Released on 2025-01-27.

#### Added
- Implement adding an action to a `UITextField`.
- Added in Pull Request [#3](https://github.com/space-code/flex-ui/pull/3).
Released on 2025-01-27. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/flex-ui/milestones?state=closed&q=1.1.0).

### Uncategorized Changes
- Release `1.1.0`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#4](https://github.com/space-code/flex-ui/pull/4).
- Update `ci.yml`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#5](https://github.com/space-code/flex-ui/pull/5).
- Implement adding an action to a `UITextField`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#3](https://github.com/space-code/flex-ui/pull/3).

## [1.0.0](https://github.com/space-code/flex-ui/releases/tag/1.0.0)
Released on 2025-01-07.

#### Added
- Initial release of FlexUI.
- Added by [Nikita Vasilev](https://github.com/ns-vasilev).
Released on 2025-01-07. All issues associated with this milestone can be found using this [filter](https://github.com/space-code/flex-ui/milestones?state=closed&q=1.0.0).

### Uncategorized Changes
- Release `1.0.0`
- Contributed by [@ns-vasilev](https://github.com/ns-vasilev) in Pull Request [#2](https://github.com/space-code/flex-ui/pull/2).
- Bump actions/checkout from 2 to 4
- Contributed by [@dependabot[bot]](https://github.com/dependabot[bot]) in Pull Request [#1](https://github.com/space-code/flex-ui/pull/1).

### New Contributors
* @dependabot[bot] made their first contribution in [#1](https://github.com/space-code/flex-ui/pull/1)

[unreleased]: https://github.com/space-code/flex-ui/compare/1.4.0..HEAD
[1.4.0]: https://github.com/space-code/flex-ui/compare/1.3.0..1.4.0
[1.3.0]: https://github.com/space-code/flex-ui/compare/1.2.0..1.3.0
[1.2.0]: https://github.com/space-code/flex-ui/compare/1.1.0..1.2.0
[1.1.0]: https://github.com/space-code/flex-ui/compare/1.0.0..1.1.0

Loading