Skip to content

Commit 39dffbe

Browse files
committed
Bump version
1 parent 309a86d commit 39dffbe

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

shard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: schema
2-
version: 0.1.0
2+
version: 0.2.0
33

44
authors:
55
- Elias J. Perez <eliasjpr@gmail.com>

spec/defintion_spec.cr renamed to spec/definition_spec.cr

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ describe Schema::Definition do
1616
p.add("address[location][latitude]", "-73.858467")
1717
p.add("address[location][useful]", "true")
1818
end
19+
20+
p params
1921

2022
it "defines schema from Hash(String, String)" do
2123
user = Example.from_urlencoded(params)

src/schema.cr

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ require "./schema/validation"
88
# The Schema macros helps you define schemas and assists
99
# with instantiating and validating data with those schemas at runtime.
1010
module Schema
11-
VERSION = "0.1.0"
11+
VERSION = "0.2.0"
1212
end

0 commit comments

Comments
 (0)