Skip to content

Commit

Permalink
3.2.85
Browse files Browse the repository at this point in the history
  • Loading branch information
noear committed Jan 7, 2024
1 parent 355af6b commit 5d7b2ff
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<dependency>
<groupId>org.noear</groupId>
<artifactId>snack3</artifactId>
<version>3.2.84</version>
<version>3.2.85</version>
</dependency>
```

Expand Down
3 changes: 3 additions & 0 deletions UPDATE_LOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 3.2.85
* 修复 EnumWrap 构造时 getEnumConstants 可能为 null 的问题

#### 3.2.84
* 修复 C{final data:Map} 反序列化时 data 无数据的问题

Expand Down
2 changes: 1 addition & 1 deletion snack3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.noear</groupId>
<artifactId>snack3</artifactId>
<version>3.2.84</version>
<version>3.2.85</version>
<packaging>jar</packaging>

<name>${project.artifactId}</name>
Expand Down
2 changes: 1 addition & 1 deletion snack3_demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<dependency>
<groupId>org.noear</groupId>
<artifactId>snack3</artifactId>
<version>3.2.84</version>
<version>3.2.85</version>
</dependency>

<!-- <dependency>-->
Expand Down
7 changes: 7 additions & 0 deletions snack3_demo/src/test/java/features/StringTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,11 @@ public void test4() {
String typeName2 = jsonNode2.select("$.value[?(iotType == 'main')]").get(0).get("unitTypeName").getString();
System.out.println("------ typeName:{}" + typeName2);
}

@Test
public void test5() {
String json = "'1a'";
System.out.println(ONode.loadStr(json).getString());
System.out.println(ONode.loadStr(json).toJson());
}
}
2 changes: 1 addition & 1 deletion 文章_Java_中_Snack3的使用.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Snack3 基于jdk8,80kb大小,非常小巧。
<dependency>
<groupId>org.noear</groupId>
<artifactId>snack3</artifactId>
<version>3.2.84</version>
<version>3.2.85</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion 文章_Snack3_一个新的微型JSON框架.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ONode 即 `One node` 之意;借签了 `Javascript` 所有变量由 `var` 申
<dependency>
<groupId>org.noear</groupId>
<artifactId>snack3</artifactId>
<version>3.2.84</version>
<version>3.2.85</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion 文章_Snack3之Jsonpath使用.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Snack3 是一个支持JSONPath的JSON框架。JSONPath是一个很强大的功
<dependency>
<groupId>org.noear</groupId>
<artifactId>snack3</artifactId>
<version>3.2.84</version>
<version>3.2.85</version>
</dependency>
```

Expand Down

0 comments on commit 5d7b2ff

Please sign in to comment.