Skip to content

Commit

Permalink
prepare to release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
godfat committed Dec 22, 2015
1 parent 24082d9 commit b6e64a6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGES

## Jellyfish 1.1.1 -- 2015-12-22

### Enhancements

* Added `Jellyfish::Rewrite` as an extension to `Jellyfish::Builder`.
Please check README.md for more detail.

## Jellyfish 1.1.0 -- 2015-09-25

### Incompatible changes
Expand Down
11 changes: 7 additions & 4 deletions jellyfish.gemspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# -*- encoding: utf-8 -*-
# stub: jellyfish 1.1.0 ruby lib
# stub: jellyfish 1.1.1 ruby lib

Gem::Specification.new do |s|
s.name = "jellyfish"
s.version = "1.1.0"
s.version = "1.1.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Lin Jen-Shin (godfat)"]
s.date = "2015-09-25"
s.date = "2015-12-22"
s.description = "Pico web framework for building API-centric web applications.\nFor Rack applications or Rack middleware. Around 250 lines of code.\n\nCheck [jellyfish-contrib][] for extra extensions.\n\n[jellyfish-contrib]: https://github.com/godfat/jellyfish-contrib"
s.email = ["godfat (XD) godfat.org"]
s.files = [
Expand All @@ -35,6 +35,7 @@ Gem::Specification.new do |s|
"lib/jellyfish/public/302.html",
"lib/jellyfish/public/404.html",
"lib/jellyfish/public/500.html",
"lib/jellyfish/rewrite.rb",
"lib/jellyfish/test.rb",
"lib/jellyfish/urlmap.rb",
"lib/jellyfish/version.rb",
Expand All @@ -51,11 +52,12 @@ Gem::Specification.new do |s|
"test/test_inheritance.rb",
"test/test_log.rb",
"test/test_misc.rb",
"test/test_rewrite.rb",
"test/test_threads.rb",
"test/test_websocket.rb"]
s.homepage = "https://github.com/godfat/jellyfish"
s.licenses = ["Apache License 2.0"]
s.rubygems_version = "2.4.8"
s.rubygems_version = "2.5.1"
s.summary = "Pico web framework for building API-centric web applications."
s.test_files = [
"test/rack/test_builder.rb",
Expand All @@ -68,6 +70,7 @@ Gem::Specification.new do |s|
"test/test_inheritance.rb",
"test/test_log.rb",
"test/test_misc.rb",
"test/test_rewrite.rb",
"test/test_threads.rb",
"test/test_websocket.rb"]
end
2 changes: 1 addition & 1 deletion lib/jellyfish/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

module Jellyfish
VERSION = '1.1.0'
VERSION = '1.1.1'
end

0 comments on commit b6e64a6

Please sign in to comment.