Skip to content

Commit

Permalink
Prepare for 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Jan 7, 2016
1 parent 29c5533 commit c29850a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Lotus::Model
A persistence layer for Lotus

## v0.5.1 - (unreleased)
## v0.5.1 - 2016-01-12
### Added
- [Taylor Finnell] Let `Lotus::Model::Configuration#adapter` to accept arbitrary options (eg. `adapter type: :sql, uri: 'jdbc:...', after_connect: Proc.new { |connection| connection.auto_commit(true) }`)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2014-2015 Luca Guidi
Copyright © 2014-2016 Luca Guidi

MIT License

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -624,4 +624,4 @@ __Lotus::Model__ uses [Semantic Versioning 2.0.0](http://semver.org)

## Copyright

Copyright © 2014-2015 Luca Guidi – Released under MIT License
Copyright © 2014-2016 Luca Guidi – Released under MIT License
2 changes: 1 addition & 1 deletion lib/lotus/model/error.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Lotus
module Model
# @since x.x.x
# @since 0.5.1
class Error < ::StandardError
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/lotus/model/migrator/postgres_adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def dump_migrations_data
system "pg_dump -t #{ migrations_table } #{ database } >> #{ escape(schema) }"
end

# @since x.x.x
# @since 0.5.1
# @api private
def call_db_command(command)
require 'open3'
Expand Down
4 changes: 2 additions & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter
]
])

SimpleCov.start do
command_name 'test'
Expand Down

0 comments on commit c29850a

Please sign in to comment.