Skip to content

Commit 5190875

Browse files
committed
Version 4.3.0
1 parent c2b8ca7 commit 5190875

File tree

4 files changed

+4
-438
lines changed

4 files changed

+4
-438
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ project, add the following to the `dependencies` section in your `pom.xml` file:
2525
<dependency>
2626
<groupId>com.upokecenter</groupId>
2727
<artifactId>cbor</artifactId>
28-
<version>4.2.0</version>
28+
<version>4.3.0</version>
2929
</dependency>
3030
```
3131

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<groupId>com.upokecenter</groupId>
55
<artifactId>cbor</artifactId>
66
<packaging>jar</packaging>
7-
<version>4.2.0</version>
7+
<version>4.3.0</version>
88
<name>CBOR (Concise Binary Object Representation)</name>
9-
<description>A Java implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.</description>
9+
<description>A Java implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 8949.</description>
1010
<url>https://github.com/peteroupc/CBOR-Java</url>
1111
<profiles>
1212
<profile>

src/test/java/com/upokecenter/test/CBORTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2452,7 +2452,7 @@ public void TestRandomSlightlyModified() {
24522452
for (int i = 0; i < 2000; ++i) {
24532453
CBORObject originalObject = CBORTestCommon.RandomCBORObject(rand);
24542454
byte[] array = originalObject.EncodeToBytes();
2455-
System.out.println("i=" + i + " obj=" + array.length);
2455+
// System.out.println("i=" + i + " obj=" + array.length);
24562456
TestRandomOne(SlightlyModify(array, rand));
24572457
}
24582458
}

0 commit comments

Comments
 (0)