diff --git a/changelog b/changelog index dc856996..2124ef9e 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,8 @@ +Version 2.1.2 +- Use 64bit ints as default data types in PostgreSQL +- add process method in worker +- Allow percent-encoded socket paths in DATABASE_URL + Version 2.1.1 - update pg gem version diff --git a/queue_classic.gemspec b/queue_classic.gemspec index 024e428a..e9dca527 100644 --- a/queue_classic.gemspec +++ b/queue_classic.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = "queue_classic" s.email = "ryan@heroku.com" - s.version = "2.1.1" + s.version = "2.1.2" s.date = "2013-01-02" s.description = "queue_classic is a queueing library for Ruby apps. (Rails, Sinatra, Etc...) queue_classic features asynchronous job polling, database maintained locks and no ridiculous dependencies. As a matter of fact, queue_classic only requires pg." s.summary = "postgres backed queue" diff --git a/readme.md b/readme.md index de0c8ff5..aa7106e7 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # queue_classic -v2.1.1 +v2.1.2 queue_classic provides a simple interface to a PostgreSQL-backed message queue. queue_classic specializes in concurrent locking and minimizing database load while providing a simple, intuitive developer experience. queue_classic assumes that you are already using PostgreSQL in your production environment and that adding another dependency (e.g. redis, beanstalkd, 0mq) is undesirable.