Commit 8ac4426

mo khan <mo.khan@gmail.com>
2020-01-21 19:16:12
Prop 0.5.0 release
1 parent 4d4170b
lib/scim/kit/v2/filter.rb
@@ -72,12 +72,12 @@ module Scim
             str('core:2.0:User') |
             str('core:2.0:Group') | (
               str('extension') >>
-            colon >>
-            alpha.repeat(1) >>
-            colon >>
-            version >>
-            colon >>
-            alpha.repeat(1)
+              colon >>
+              alpha.repeat(1) >>
+              colon >>
+              version >>
+              colon >>
+              alpha.repeat(1)
             )
           )
         end
lib/scim/kit/version.rb
@@ -2,6 +2,6 @@
 
 module Scim
   module Kit
-    VERSION = '0.4.0'
+    VERSION = '0.5.0'
   end
 end
CHANGELOG.md
@@ -1,4 +1,4 @@
-Version 0.4.0
+Version 0.5.0
 
 # Changelog
 All notable changes to this project will be documented in this file.
@@ -9,7 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ## [Unreleased]
 - nil
 
+## [0.5.0] - 2020-01-21
+### Added
+- Add API to traverse a SCIM filter AST
+
 ## [0.4.0] - 2019-06-15
+### Added
 - add implementation of SCIM 2.0 filter parser. [RFC-7644](https://tools.ietf.org/html/rfc7644#section-3.4.2.2)
 
 ## [0.3.2] - 2019-02-23
@@ -39,7 +44,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/mokhan/scim-kit/compare/v0.4.0...HEAD
+[Unreleased]: https://github.com/mokhan/scim-kit/compare/v0.5.0...HEAD
+[0.4.0]: https://github.com/mokhan/scim-kit/compare/v0.4.0...v0.5.0
 [0.4.0]: https://github.com/mokhan/scim-kit/compare/v0.3.2...v0.4.0
 [0.3.2]: https://github.com/mokhan/scim-kit/compare/v0.3.1...v0.3.2
 [0.3.1]: https://github.com/mokhan/scim-kit/compare/v0.3.0...v0.3.1
Gemfile.lock
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    scim-kit (0.4.0)
+    scim-kit (0.5.0)
       activemodel (>= 5.2.0)
       net-hippie (~> 0.2)
       parslet (~> 1.8)