[Git][java-team/jruby-joni][debian/sid] 14 commits: [maven-release-plugin] prepare for next development iteration
Hideki Yamane
gitlab at salsa.debian.org
Fri Oct 19 23:49:39 BST 2018
Hideki Yamane pushed to branch debian/sid at Debian Java Maintainers / jruby-joni
Commits:
4a2da27c by Marcin Mielzynski at 2018-10-03T16:39:24Z
[maven-release-plugin] prepare for next development iteration
- - - - -
fd9165ff by Marcin Mielzynski at 2018-10-03T16:59:26Z
cover two more error exceptions
- - - - -
c2c03e70 by Marcin Mielzynski at 2018-10-03T18:19:55Z
reverse test
- - - - -
e9c75c0f by Marcin Mielzynski at 2018-10-03T18:59:05Z
remove unused var
- - - - -
522db76a by Marcin Mielzynski at 2018-10-12T17:46:15Z
bump jcodings
- - - - -
74472d94 by Marcin Mielzynski at 2018-10-12T17:46:41Z
add code range tests
- - - - -
6d1b49f5 by Marcin Mielzynski at 2018-10-14T19:22:00Z
Fix opEndLine singlebyte specialization
- - - - -
c92d23a7 by Marcin Mielzynski at 2018-10-14T19:34:22Z
better fix for jruby/5368
- - - - -
d575031f by Marcin Mielzynski at 2018-10-14T19:36:03Z
[maven-release-plugin] prepare release joni-2.1.25
- - - - -
cae00915 by Hideki Yamane at 2018-10-19T22:38:25Z
Merge tag 'joni-2.1.25' into debian/sid
[maven-release-plugin] copy for tag joni-2.1.25
- - - - -
7ecc2ee4 by Hideki Yamane at 2018-10-19T22:38:45Z
new upstream release
- - - - -
f03867c2 by Hideki Yamane at 2018-10-19T22:39:16Z
upload to unstable
- - - - -
bb3839b5 by Hideki Yamane at 2018-10-19T22:45:02Z
Adjust Build-Dependency version
- - - - -
fdc5b8ae by Hideki Yamane at 2018-10-19T22:46:55Z
upload to unstable
- - - - -
7 changed files:
- debian/changelog
- debian/control
- pom.xml
- src/org/joni/ByteCodeMachine.java
- src/org/joni/Lexer.java
- test/org/joni/test/TestError.java
- test/org/joni/test/TestU8.java
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+jruby-joni (2.1.25-1) unstable; urgency=medium
+
+ * New upstream release
+ * debian/control
+ - Adjust Build-Dependency version
+
+ -- Hideki Yamane <henrich at debian.org> Sat, 20 Oct 2018 07:46:51 +0900
+
jruby-joni (2.1.24-1) unstable; urgency=medium
* New upstream release
=====================================
debian/control
=====================================
@@ -11,7 +11,7 @@ Build-Depends:
Build-Depends-Indep:
junit4 (>= 4.12),
libasm-java (>= 6.2.1),
- libjcodings-java (>= 1.0.40),
+ libjcodings-java (>= 1.0.41),
maven-debian-helper (>= 2.0)
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/java-team/jruby-joni.git
=====================================
pom.xml
=====================================
@@ -4,7 +4,7 @@
<groupId>org.jruby.joni</groupId>
<artifactId>joni</artifactId>
<packaging>jar</packaging>
- <version>2.1.24</version>
+ <version>2.1.25</version>
<name>Joni</name>
<description>
Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.jruby.jcodings</groupId>
<artifactId>jcodings</artifactId>
- <version>1.0.40</version>
+ <version>1.0.41</version>
</dependency>
<dependency>
<groupId>junit</groupId>
=====================================
src/org/joni/ByteCodeMachine.java
=====================================
@@ -1273,7 +1273,7 @@ class ByteCodeMachine extends StackMachine {
private void opEndLineSb() {
if (s == end) {
if (Config.USE_NEWLINE_AT_END_OF_STRING_HAS_EMPTY_LINE) {
- if (str == end || bytes[sprev] != Encoding.NEW_LINE) {
+ if (str == end || !(sprev < end && bytes[sprev] == Encoding.NEW_LINE)) {
if (isNotEol(msaOptions)) opFail();
}
return;
=====================================
src/org/joni/Lexer.java
=====================================
@@ -422,8 +422,6 @@ class Lexer extends ScannerSupport {
private final int fetchNameForNoNamedGroup(int startCode, boolean ref) {
int src = p;
value = 0;
-
- int isNum = 0;
int sign = 1;
int endCode = nameEndCodePoint(startCode);
@@ -438,9 +436,7 @@ class Lexer extends ScannerSupport {
if (c == endCode) newValueException(EMPTY_GROUP_NAME);
if (enc.isDigit(c)) {
- isNum = 1;
} else if (c == '-') {
- isNum = 2;
sign = -1;
pnumHead = p;
} else {
=====================================
test/org/joni/test/TestError.java
=====================================
@@ -93,5 +93,7 @@ public class TestError extends Test {
xerrs("(a)?(?<n>b)?(?(1)a)(?(<n>)b)", ErrorMessages.NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED);
+ xerrs("()(?(2))", ErrorMessages.INVALID_BACKREF);
+ xerrs("(?(700000))", ErrorMessages.INVALID_BACKREF);
}
}
=====================================
test/org/joni/test/TestU8.java
=====================================
@@ -348,5 +348,9 @@ public class TestU8 extends Test {
ns("^.+$", "\n");
ns("💌", "aa");
+ ns("aa", "💌");
+
+ x2s("\\P{In_Supplemental_Symbols_and_Pictographs}?", "", 0, 0);
+ x2s("\\P{In_Transport_and_Map_Symbols}?", "", 0, 0);
}
}
View it on GitLab: https://salsa.debian.org/java-team/jruby-joni/compare/f01a1d00172c25b2a39c5c33e9be09ed421a74ba...fdc5b8ae57f96753ccc2dffb67aa8fae98aaac7d
--
View it on GitLab: https://salsa.debian.org/java-team/jruby-joni/compare/f01a1d00172c25b2a39c5c33e9be09ed421a74ba...fdc5b8ae57f96753ccc2dffb67aa8fae98aaac7d
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/20181019/60ad42ad/attachment.html>
More information about the pkg-java-commits
mailing list