Skip to content

Commit 64ef7aa

Browse files
Documents: Updates README and docs with new version
1 parent c1e7dfa commit 64ef7aa

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.3.0 [2019-10-30]
4+
5+
### Added
6+
7+
- Support for the generic `description` keyword (#14).
8+
- support for the `const` keyword (#21).
9+
10+
### Fixed
11+
- Various bugs related to parsing nested root object (#35).
12+
313
## v0.2.0 [2019-03-24]
414

515
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ dependency.
2323

2424
```elixir
2525
defp deps do
26-
[{:json_schema, "~> 0.2"}]
26+
[{:json_schema, "~> 0.3"}]
2727
end
2828
```

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependency.
1212

1313
```elixir
1414
defp deps do
15-
[{:json_schema, "~> 0.2"}]
15+
[{:json_schema, "~> 0.3"}]
1616
end
1717
```
1818

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule JsonSchema.Mixfile do
22
use Mix.Project
33

4-
@version "0.2.2"
4+
@version "0.3.0"
55
@elixir_version "~> 1.9"
66

77
def project do

0 commit comments

Comments
 (0)