diff --git a/README.md b/README.md index 8fe95b5..9d8877c 100644 --- a/README.md +++ b/README.md @@ -876,7 +876,7 @@ it matches `type`, otherwise fail. ## Changelog -**Upcoming release** +**Oct 19 2019** - 2.1.0 * Add `types.partial` alias for open shape * Add `types.array_contains` diff --git a/tableshape/init.lua b/tableshape/init.lua index a21f8a0..f9c0a1d 100644 --- a/tableshape/init.lua +++ b/tableshape/init.lua @@ -2140,5 +2140,5 @@ return { type_switch = type_switch, BaseType = BaseType, FailedTransform = FailedTransform, - VERSION = "2.0.0" + VERSION = "2.1.0" } diff --git a/tableshape/init.moon b/tableshape/init.moon index 5b888b9..e60243d 100644 --- a/tableshape/init.moon +++ b/tableshape/init.moon @@ -977,4 +977,4 @@ is_type = (val) -> type_switch = (val) -> setmetatable { val }, { __eq: BaseType.__eq } -{ :check_shape, :types, :is_type, :type_switch, :BaseType, :FailedTransform, VERSION: "2.0.0" } +{ :check_shape, :types, :is_type, :type_switch, :BaseType, :FailedTransform, VERSION: "2.1.0" }