summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md9
-rw-r--r--Gemfile.lock2
-rw-r--r--lib/scim/kit/version.rb2
3 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0275e10..bb1bf5f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-Version 0.7.1
+Version 0.7.2
# Changelog
All notable changes to this project will be documented in this file.
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.7.2] - 2024-12-05
+### Fixed
+- Change references to string during validation
+
## [0.7.1] - 2022-12-12
### Fixed
- Add support for duplicate attribute names
@@ -85,7 +89,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- \_assign does not coerce values by default.
- errors are merged together instead of overwritten during attribute validation.
-[Unreleased]: https://github.com/xlgmokha/scim-kit/compare/v0.7.1...HEAD
+[Unreleased]: https://github.com/xlgmokha/scim-kit/compare/v0.7.2...HEAD
+[0.7.2]: https://github.com/xlgmokha/scim-kit/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/xlgmokha/scim-kit/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/xlgmokha/scim-kit/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/xlgmokha/scim-kit/compare/v0.5.3...v0.6.0
diff --git a/Gemfile.lock b/Gemfile.lock
index 4818464..fd58824 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- scim-kit (0.7.1)
+ scim-kit (0.7.2)
activemodel (>= 6.1, < 8.0)
net-hippie (~> 1.0)
parslet (~> 2.0)
diff --git a/lib/scim/kit/version.rb b/lib/scim/kit/version.rb
index ba92e60..75af40a 100644
--- a/lib/scim/kit/version.rb
+++ b/lib/scim/kit/version.rb
@@ -2,6 +2,6 @@
module Scim
module Kit
- VERSION = '0.7.1'
+ VERSION = '0.7.2'
end
end