-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
# 1.0.1 | ||
|
||
#### Major changes | ||
|
||
- Add cases to handle `nil` query returns. ([#45](https://github.com/eonu/arx/pull/45)) | ||
- Add support for the `coveralls` gem (`.coveralls.yml` configuration file). ([#42](https://github.com/eonu/arx/pull/42)) | ||
|
||
#### Minor changes | ||
|
||
- Add code coverage badge to `README.md`. ([#42](https://github.com/eonu/arx/pull/42)) | ||
- Remove documentation badge from top of `README.md`. ([#42](https://github.com/eonu/arx/pull/42)) | ||
- Change author email from `[email protected]` to `[email protected]`. ([#43](https://github.com/eonu/arx/pull/43)) | ||
- Change `ends_with_connective?` to `end_with_connective?` to follow typical Ruby patterns. ([#44](https://github.com/eonu/arx/pull/44)) | ||
- Add `/coverage/` directory to `.gitignore`. ([#45](https://github.com/eonu/arx/pull/45)) | ||
- Remove version numbers from paper identifiers in error message in `README.md`. ([#46](https://github.com/eonu/arx/pull/46)) | ||
|
||
# 1.0.0 | ||
|
||
#### Major changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ module Arx | |
VERSION = { | ||
major: 1, | ||
minor: 0, | ||
patch: 0, | ||
patch: 1, | ||
meta: nil, | ||
}.compact.values.join('.').freeze | ||
end |