[Git][java-team/jruby-joni][debian/sid] 8 commits: [maven-release-plugin] prepare for next development iteration
Hideki Yamane (@henrich)
gitlab at salsa.debian.org
Fri Jan 27 11:56:42 GMT 2023
Hideki Yamane pushed to branch debian/sid at Debian Java Maintainers / jruby-joni
Commits:
6d35fcab by Charles Oliver Nutter at 2022-11-14T10:51:24-06:00
[maven-release-plugin] prepare for next development iteration
- - - - -
2f859a47 by Thomas E. Enebo at 2023-01-20T13:46:45-06:00
re-enable sunday search logic
- - - - -
f199bb3d by Thomas E. Enebo at 2023-01-23T10:07:40-06:00
[maven-release-plugin] prepare release joni-2.1.45
- - - - -
409eb77d by Hideki Yamane at 2023-01-27T20:48:44+09:00
Merge tag 'joni-2.1.45' into debian/sid
[maven-release-plugin] copy for tag joni-2.1.45
- - - - -
9611b13f by Hideki Yamane at 2023-01-27T20:49:28+09:00
new upstream release
- - - - -
494649d3 by Hideki Yamane at 2023-01-27T20:49:42+09:00
Set Standards-Version: 4.6.2 with no changes
- - - - -
82b46f01 by Hideki Yamane at 2023-01-27T20:50:13+09:00
note to changelog
- - - - -
973e4057 by Hideki Yamane at 2023-01-27T20:51:05+09:00
upload to unstable
- - - - -
4 changed files:
- debian/changelog
- debian/control
- pom.xml
- src/org/joni/Regex.java
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+jruby-joni (2.1.45-1) unstable; urgency=medium
+
+ * New upstream release
+ * debian/control
+ - Set Standards-Version: 4.6.2 with no changes
+
+ -- Hideki Yamane <henrich at debian.org> Fri, 27 Jan 2023 20:51:02 +0900
+
jruby-joni (2.1.44-1) unstable; urgency=medium
* New upstream release
=====================================
debian/control
=====================================
@@ -11,7 +11,7 @@ Build-Depends-Indep:
junit4 (>= 4.13.1),
libjcodings-java (>= 1.0.58),
maven-debian-helper (>= 2.0)
-Standards-Version: 4.6.1
+Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/java-team/jruby-joni.git
Vcs-Browser: https://salsa.debian.org/java-team/jruby-joni
Homepage: https://github.com/jruby/joni/
=====================================
pom.xml
=====================================
@@ -4,7 +4,7 @@
<groupId>org.jruby.joni</groupId>
<artifactId>joni</artifactId>
<packaging>jar</packaging>
- <version>2.1.44</version>
+ <version>2.1.45</version>
<name>Joni</name>
<description>
Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma
=====================================
src/org/joni/Regex.java
=====================================
@@ -351,11 +351,11 @@ public final class Regex {
if (e.ignoreCase > 0) {
if (e.length >= 3 || (e.length >= 2 && allowReverse)) {
forward = enc.toLowerCaseTable() != null ? Search.SLOW_IC_SB_FORWARD : Search.SLOW_IC_FORWARD;
-// if (!setupBMSkipMap(true)) {
-// forward = allowReverse ? Search.BM_IC_FORWARD : Search.BM_NOT_REV_IC_FORWARD;
-// } else {
-// forward = enc.toLowerCaseTable() != null ? Search.SLOW_IC_SB_FORWARD : Search.SLOW_IC_FORWARD;
-// }
+ if (!setupBMSkipMap(true)) {
+ forward = allowReverse ? Search.BM_IC_FORWARD : Search.BM_NOT_REV_IC_FORWARD;
+ } else {
+ forward = enc.toLowerCaseTable() != null ? Search.SLOW_IC_SB_FORWARD : Search.SLOW_IC_FORWARD;
+ }
} else {
forward = enc.toLowerCaseTable() != null ? Search.SLOW_IC_SB_FORWARD : Search.SLOW_IC_FORWARD;
}
View it on GitLab: https://salsa.debian.org/java-team/jruby-joni/-/compare/4102a34cb92d7921cdb1e1dde9497b573dda21d3...973e4057312fa57662b5a1d33d2ecb4964e8a295
--
View it on GitLab: https://salsa.debian.org/java-team/jruby-joni/-/compare/4102a34cb92d7921cdb1e1dde9497b573dda21d3...973e4057312fa57662b5a1d33d2ecb4964e8a295
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20230127/da73d3b8/attachment.htm>
More information about the pkg-java-commits
mailing list