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 0.4.21 #139

Merged
merged 3 commits into from
Jan 22, 2020
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 .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.20
0.4.21
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.4.21]

### Added

- Add rule `duplicate_id`, which detect xml element duplicate id [#126](https://github.com/IBDecodable/IBLinter/pull/126)
- Add rule `reuse_identifier` which checks that ReuseIdentifier same as class name. [#137](https://github.com/IBDecodable/IBLinter/pull/137)

### Fixed

- Do not detect violations for system images for `image_resources` rule. [#131](https://github.com/IBDecodable/IBLinter/pull/131)

## [0.4.20]

### Fixed
Expand Down Expand Up @@ -77,7 +88,8 @@ Fix bug where IBLinter ignores to validate UICollectionViewCell. [#97](https://g
- First version


[Unreleased]: https://github.com/IBDecodable/IBLinter/compare/0.4.20...HEAD
[Unreleased]: https://github.com/IBDecodable/IBLinter/compare/0.4.21...HEAD
[0.4.21]: https://github.com/IBDecodable/IBLinter/compare/0.4.20...0.4.21
[0.4.20]: https://github.com/IBDecodable/IBLinter/compare/0.4.19...0.4.20
[0.4.19]: https://github.com/IBDecodable/IBLinter/compare/0.4.18...0.4.19
[0.4.18]: https://github.com/IBDecodable/IBLinter/compare/0.4.17...0.4.18
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ current_version:
bump_version:
$(eval NEW_VERSION := $(filter-out $@,$(MAKECMDGOALS)))
@echo $(NEW_VERSION) > .version
@sed 's/__VERSION__/$(NEW_VERSION)/g' script/Version.swift.template > Sources/IBLinterFrontend/Version.swift
@sed 's/__VERSION__/$(NEW_VERSION)/g' script/Version.swift.template > Sources/IBLinterKit/Version.swift
git commit -am"Bump version to $(NEW_VERSION)"

publish:
Expand Down
2 changes: 1 addition & 1 deletion Sources/IBLinterKit/Version.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
public struct Version {
public let value: String

public static let current = Version(value: "0.4.19")
public static let current = Version(value: "0.4.21")
}