Skip to content

Commit

Permalink
Merge pull request #139 from IBDecodable/release/0.4.21
Browse files Browse the repository at this point in the history
Release 0.4.21
  • Loading branch information
kateinoigakukun authored Jan 22, 2020
2 parents a48d7b2 + 9bbb6d7 commit d2da7b9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
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")
}

0 comments on commit d2da7b9

Please sign in to comment.