diff --git a/changelog b/changelog index 3a4f2b49..563582f4 100644 --- a/changelog +++ b/changelog @@ -1,8 +1,9 @@ -Version 2.0.0rc4 -- fix the loading of sql functions - -Version 2.0.0rc1 -- TODO +Version 2.0.0 +- simpler setup via QC::Setup.create (rake qc:create) & QC::Setup.drop (rake +qc:drop) +- simpler abstractions in implementation +- better support for instrumentation via log_yield hook in QC module +- multiple queues use one table with a queue_name column Version 1.0.2 - update to latest okjson as the current has bugs diff --git a/queue_classic.gemspec b/queue_classic.gemspec index e3df50ee..fe672031 100644 --- a/queue_classic.gemspec +++ b/queue_classic.gemspec @@ -1,11 +1,11 @@ Gem::Specification.new do |s| s.name = "queue_classic" s.email = "ryan@heroku.com" - s.version = "2.0.0rc14" + s.version = "2.0.0" s.date = "2012-02-29" 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" - s.authors = ["Ryan Smith (ace hacker)"] + s.authors = ["Ryan Smith (♠ ace hacker)"] s.homepage = "http://github.com/ryandotsmith/queue_classic" files = [] diff --git a/readme.md b/readme.md index 07d57fda..385d1d95 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # queue_classic -v2.0.0rc14 +v2.0.0 queue_classic provides PostgreSQL-backed queueing focused on concurrent job locking and minimizing database load while providing a simple, intuitive user @@ -69,7 +69,7 @@ $ ruby -r queue_classic -e "QC::Worker.new.work" ```ruby source :rubygems -gem "queue_classic", "2.0.0rc14" +gem "queue_classic", "2.0.0" ``` **Rakefile**