diff --git a/CHANGELOG.md b/CHANGELOG.md index 771c945..8d53e47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog][changelog], and this project adheres to [Semantic Versioning][versioning]. -## [Unreleased] +## [1.0.1] ### Fixed diff --git a/configsql.gemspec b/configsql.gemspec index 4b22cd5..cd036a3 100644 --- a/configsql.gemspec +++ b/configsql.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'configsl' - s.version = '1.0.0' + s.version = '1.0.1' s.licenses = ['MIT'] s.summary = 'A simple DSL for declarative configuration in ruby.' s.description = 'A simple, modular, extensible DSL for configuration.' diff --git a/lib/configsl.rb b/lib/configsl.rb index 44c6e4a..ca77d6d 100644 --- a/lib/configsl.rb +++ b/lib/configsl.rb @@ -3,5 +3,5 @@ require_relative 'configsl/config' module ConfigSL - VERSION = '1.0.0' + VERSION = '1.0.1' end