jruby-rack 1.2.0 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 134a0e023105cb9e48ba4abd8c19b80641ea2be351de89152bc37cb79da25443
4
- data.tar.gz: f68b392739da19a4d15651fd990dce9c0e5fbaf4f97ae11844b57a72ca5a134d
3
+ metadata.gz: da031dff9b1220f96f99161e8e8ab7d7685929ffd08ff8f762ba3fe27d85174b
4
+ data.tar.gz: 712c41c72395dec83caaae6570904ed9710cb13ad13c58371dbae32d80ae345a
5
5
  SHA512:
6
- metadata.gz: 4df03904efc76deeb79d855d2a500f22457b8b5ed721b145abf233fc8f5f3c955011d8b3a2d1e3df1a59ef93cb03e0a339e9f939ddcfc548384af89e894cf733
7
- data.tar.gz: 8fac63b42eacac8f504472d71c1fbfd4ca4cf82207854b5b5619de75666b352323b08720557c95561ca65d297be149269c7ab55a0b0fdd1e7ae963677fb1ecae
6
+ metadata.gz: 635e3cab8959729b8a4f5d872abeadb716d15dafa1d893ec38e622447ffc84e7617a84ba20889cb4fba3644a5676ec3b92080663db1e3f633abf39bcf9d6a76b
7
+ data.tar.gz: 331a9ca17cbc1e079e9cf82408ddfd7c48980755fd08f760f6bb86dab522e049d523091016c3cedd4940575a08d10240923b53bc9dd9e6a0968c74c9a43e686e
data/README.md CHANGED
@@ -330,6 +330,13 @@ You can **not** use JRuby-Rack with Bundler directly from the git (or http) URL
330
330
  is compiled and generated on-demand during the build (it would require us to
331
331
  package and push the .jar every time a commit changes a source file).
332
332
 
333
+ ## Releasing
334
+
335
+ * Make sure auth is configured for "ossrh" repository ID in your .m2/settings.xml
336
+ * Update the version in src/main/ruby/jruby/rack/version.rb to the release version
337
+ * mvn release:prepare
338
+ * mvn release:perform (possibly with -DuseReleaseProfile=false due to Javadoc doclint failures for now)
339
+ * rake clean gem SKIP_SPECS=true and push the gem
333
340
 
334
341
  ## Support
335
342
 
@@ -342,4 +349,4 @@ More information at the [wiki][5] or ask us at **#jruby**'s IRC channel.
342
349
  [4]: https://github.com/jruby/jruby-rack/issues
343
350
  [5]: https://wiki.github.com/jruby/jruby-rack
344
351
  [8]: http://badge.fury.io/rb/jruby-rack
345
- [9]: https://secure.travis-ci.org/jruby/jruby-rack.png?branch=master
352
+ [9]: https://secure.travis-ci.org/jruby/jruby-rack.png?branch=master
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = '1.2.0'
10
+ VERSION = '1.2.2'
11
11
  end
12
12
  end
data/lib/jruby-rack.rb CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  module JRubyJars
3
3
  def self.jruby_rack_jar_path
4
- File.expand_path("../jruby-rack-1.2.0.jar", __FILE__)
4
+ File.expand_path("../jruby-rack-1.2.2.jar", __FILE__)
5
5
  end
6
6
  require jruby_rack_jar_path if defined?(JRUBY_VERSION)
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sieger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-23 00:00:00.000000000 Z
11
+ date: 2024-06-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet
14
14
  API to Rack. For JRuby only.
@@ -21,7 +21,7 @@ files:
21
21
  - History.md
22
22
  - LICENSE.txt
23
23
  - README.md
24
- - lib/jruby-rack-1.2.0.jar
24
+ - lib/jruby-rack-1.2.2.jar
25
25
  - lib/jruby-rack.rb
26
26
  - lib/jruby/rack/version.rb
27
27
  homepage: http://jruby.org