Skip to content

Commit

Permalink
Create 1.0.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesiarmes committed Sep 3, 2024
1 parent 6711903 commit 4f83875
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ 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.0

Initial release.

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ConfigSL
# ConfigSL [![Coverage Status][badge-coverage]][coverage]

ConfigSL is a simple Domain-Specific Language (DSL) module for configuration.
It is designed to provide a declarative way to define configuration, with as few
Expand Down Expand Up @@ -100,3 +100,6 @@ classes, they will need to be implemented in both.
It's important to note that this is not limited to your defined configuration
options, but also methods such as `register_file_format` and
`config_file_path`.

[badge-coverage]: https://coveralls.io/repos/github/jamesiarmes/configsl/badge.svg
[coverage]: https://coveralls.io/github/jamesiarmes/configsl
6 changes: 4 additions & 2 deletions configsql.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@

Gem::Specification.new do |s|
s.name = 'configsl'
s.version = '0.1.0'
s.version = '1.0.0'
s.licenses = ['MIT']
s.summary = 'ConfigSL is a simple configuration DSL.'
s.summary = 'A simple DSL for declarative configuration in ruby.'
s.description = 'A simple, modular, extensible DSL for configuration.'
s.authors = ['James I. Armes']
s.email = 'jamesiarmes@gmail.com'
s.files = Dir['lib/**/*'] + Dir['Gemfile']
s.extra_rdoc_files = %w[README.md CHANGELOG.md]
s.homepage = 'https://github.com/jamesiarmes/configsl'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/jamesiarmes/configsl/issues',
'changelog_uri' => 'https://github.com/jamesiarmes/configsl/blob/main/CHANGELOG.md',
'homepage_uri' => s.homepage,
'rubygems_mfa_required' => 'true',
'source_code_uri' => 'https://github.com/jamesiarmes/configsl'
Expand Down
2 changes: 1 addition & 1 deletion lib/configsl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
require_relative 'configsl/config'

module ConfigSL
VERSION = '0.1.0'
VERSION = '1.0.0'
end

0 comments on commit 4f83875

Please sign in to comment.