Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
 - fix dependencies to be more specific (lock out old versions)
 - also fix versioning (found out, that rake doesn't like
 require_relative)
  • Loading branch information
Florian Dopona committed Mar 8, 2018
1 parent 3fe757a commit fbb73ef
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
- 0.6.0

* add SCRAM-SHA-1 authentication mechanism
* add aggregation pipeline
* allow passing options to create_collection

* fix usage of em-mongo git repos with bundler
* update dependencies to bson <= 2.0, eventmachine >=0.12.10, <= 2.0

- 0.5.1

* fixed bson dependency (do not use 2.x)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.0
8 changes: 5 additions & 3 deletions em-mongo.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
require_relative 'lib/em-mongo/version.rb' #for version
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'em-mongo/version.rb' #for version

Gem::Specification.new do |s|
s.name = 'em-mongo'
Expand All @@ -23,6 +25,6 @@ Gem::Specification.new do |s|

s.summary = 'An EventMachine driver for MongoDB.'

s.add_dependency 'eventmachine', ['<= 2.0']
s.add_dependency 'bson', ['<= 2.0']
s.add_dependency 'eventmachine', ['>=0.12.10', '< 2.0']
s.add_dependency 'bson', ['>=1.9.2' , '< 2.0']
end

0 comments on commit fbb73ef

Please sign in to comment.