<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/ext/date/date.gemspec, branch v3_3_11</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[ruby/date] Fixed wrong minimum version of Ruby</title>
<updated>2022-12-14T07:56:09+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2022-12-14T07:44:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=bec7deba306572a130e971b53a82270a7b1255c6'/>
<id>bec7deba306572a130e971b53a82270a7b1255c6</id>
<content type='text'>
  Fixed https://github.com/ruby/date/issues/83

https://github.com/ruby/date/commit/9731a3e732
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Fixed https://github.com/ruby/date/issues/83

https://github.com/ruby/date/commit/9731a3e732
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/date] No-op gem for JRuby for now</title>
<updated>2022-12-09T07:55:07+00:00</updated>
<author>
<name>Charles Oliver Nutter</name>
<email>headius@headius.com</email>
</author>
<published>2022-12-09T04:43:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=e96b64f5e749425b63cc71f256da304fe3ee476b'/>
<id>e96b64f5e749425b63cc71f256da304fe3ee476b</id>
<content type='text'>
Remove all shipped files and require path on JRuby until we can
add JRuby's extension to the gem.

Temporary workaround for #48

https://github.com/ruby/date/commit/94c3becef2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove all shipped files and require path on JRuby until we can
add JRuby's extension to the gem.

Temporary workaround for #48

https://github.com/ruby/date/commit/94c3becef2
</pre>
</div>
</content>
</entry>
<entry>
<title>Manually sync with https://github.com/ruby/date/pull/64</title>
<updated>2022-07-27T05:17:19+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2022-07-27T05:17:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8154b176dee18284772d58c817851bd988e58742'/>
<id>8154b176dee18284772d58c817851bd988e58742</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/date] Expose Date::VERSION</title>
<updated>2021-11-18T10:39:55+00:00</updated>
<author>
<name>Jean Boussier</name>
<email>jean.boussier@gmail.com</email>
</author>
<published>2021-11-16T13:14:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=3ce27552df3411ea75ac8f24023194ec373e0f0c'/>
<id>3ce27552df3411ea75ac8f24023194ec373e0f0c</id>
<content type='text'>
An almost universal convention for gems is to expose `Namespace::VERSION`
which makes it mcuh easier when debugging etc.

Many gems extracted from ruby don't do this, even though it would be even more
useful because they ship with ruby, so it's less clear which version it is.

https://github.com/ruby/date/commit/fef7ec18d8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
An almost universal convention for gems is to expose `Namespace::VERSION`
which makes it mcuh easier when debugging etc.

Many gems extracted from ruby don't do this, even though it would be even more
useful because they ship with ruby, so it's less clear which version it is.

https://github.com/ruby/date/commit/fef7ec18d8
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/date] Add length limit option for methods that parses date strings</title>
<updated>2021-11-16T11:56:56+00:00</updated>
<author>
<name>Yusuke Endoh</name>
<email>mame@ruby-lang.org</email>
</author>
<published>2021-11-12T03:15:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=489c8cebf575741d62effd0d212f1319beff3c40'/>
<id>489c8cebf575741d62effd0d212f1319beff3c40</id>
<content type='text'>
`Date.parse` now raises an ArgumentError when a given date string is
longer than 128. You can configure the limit by giving `limit` keyword
arguments like `Date.parse(str, limit: 1000)`. If you pass `limit: nil`,
the limit is disabled.

Not only `Date.parse` but also the following methods are changed.

* Date._parse
* Date.parse
* DateTime.parse
* Date._iso8601
* Date.iso8601
* DateTime.iso8601
* Date._rfc3339
* Date.rfc3339
* DateTime.rfc3339
* Date._xmlschema
* Date.xmlschema
* DateTime.xmlschema
* Date._rfc2822
* Date.rfc2822
* DateTime.rfc2822
* Date._rfc822
* Date.rfc822
* DateTime.rfc822
* Date._jisx0301
* Date.jisx0301
* DateTime.jisx0301

https://github.com/ruby/date/commit/3959accef8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`Date.parse` now raises an ArgumentError when a given date string is
longer than 128. You can configure the limit by giving `limit` keyword
arguments like `Date.parse(str, limit: 1000)`. If you pass `limit: nil`,
the limit is disabled.

Not only `Date.parse` but also the following methods are changed.

* Date._parse
* Date.parse
* DateTime.parse
* Date._iso8601
* Date.iso8601
* DateTime.iso8601
* Date._rfc3339
* Date.rfc3339
* DateTime.rfc3339
* Date._xmlschema
* Date.xmlschema
* DateTime.xmlschema
* Date._rfc2822
* Date.rfc2822
* DateTime.rfc2822
* Date._rfc822
* Date.rfc822
* DateTime.rfc822
* Date._jisx0301
* Date.jisx0301
* DateTime.jisx0301

https://github.com/ruby/date/commit/3959accef8
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/date] Bump up date version to 3.2.0</title>
<updated>2021-10-14T12:15:57+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2021-10-14T12:15:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2fa0d51ac9b505a836369a5613e2d0359ee918cf'/>
<id>2fa0d51ac9b505a836369a5613e2d0359ee918cf</id>
<content type='text'>
https://github.com/ruby/date/commit/e0a4cbc8f6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/date/commit/e0a4cbc8f6
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/date] Bump version to 3.1.1</title>
<updated>2021-04-20T11:46:03+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-12-23T09:18:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=3fdc58c08b24eaef42bd9db4ede02c2269d5d6f2'/>
<id>3fdc58c08b24eaef42bd9db4ede02c2269d5d6f2</id>
<content type='text'>
https://github.com/ruby/date/commit/e574cc9048
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/date/commit/e574cc9048
</pre>
</div>
</content>
</entry>
<entry>
<title>Update version for Ractor-safe extensions</title>
<updated>2020-12-23T05:03:54+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-12-23T05:03:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5cf25c55a69264138179f7c955d149a154b50458'/>
<id>5cf25c55a69264138179f7c955d149a154b50458</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update the license for the default gems to dual licenses</title>
<updated>2020-08-18T11:26:39+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-08-18T11:15:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8fb02b7a97317090e3946e6f2d4a7d034f9699f1'/>
<id>8fb02b7a97317090e3946e6f2d4a7d034f9699f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/date] Bump version to 3.0.1</title>
<updated>2020-06-20T09:35:03+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-06-19T21:06:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b68ddcf30ce1dc2788d3bd3d10169726feada1f2'/>
<id>b68ddcf30ce1dc2788d3bd3d10169726feada1f2</id>
<content type='text'>
https://github.com/ruby/date/commit/47cca1b76b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/date/commit/47cca1b76b
</pre>
</div>
</content>
</entry>
</feed>
