Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# main [(unreleased)](https://github.com/fastruby/dotenv_validator/compare/v1.1.0...main)

# v1.2.0 /2022-04-04 [(commits)](https://github.com/fastruby/dotenv_validator/compare/v1.1.0...v1.2.0)

* [FEATURE: Add UUID format](https://github.com/fastruby/dotenv_validator/pull/54)
* [FEATURE: Better error management for a scenario where .env.sample is missing](https://github.com/fastruby/dotenv_validator/pull/40)
* [FEATURE: Add boolean format](https://github.com/fastruby/dotenv_validator/pull/38)
Expand Down
2 changes: 1 addition & 1 deletion lib/dotenv_validator/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DotenvValidator
VERSION = "1.1.0"
VERSION = "1.2.0"
end
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

SimpleCov.start do
track_files "lib/**/*.rb"
add_filter "lib/dotenv_validator/version.rb"
end

puts "Using SimpleCov v#{SimpleCov::VERSION}"
Expand Down