Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
looly committed Jan 18, 2019
2 parents 6a5e2e3 + 65345ac commit 84be6d3
Show file tree
Hide file tree
Showing 42 changed files with 396 additions and 136 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@

-------------------------------------------------------------------------------------------------------------

## 4.4.2

### 新特性
* 【core】 JSON中添加getStrEscaped方法,并修改原getStr逻辑,不再自动转义(issue#IR7SW@Gitee)
* 【core】 CLassLoaderUtil增加getJarClassLoader和loadClass重载方法(issue#IR94T@Gitee)
* 【crypto】 SM2密钥生成曲线修改为使用sm2p256v1(pr#249@Github)
* 【json】 JSONUtil增加空判断(issue#253@Github)
* 【core】 改进HexUtil.isHexNumber(issue#254@Github)
* 【http】 HttpRequest增加getConnection方法(issue#251@Github)

### Bug修复
* 【core】 修复URL转义问题(issue#IR6QP@Gitee)
* 【core】 修复WeightRandom权重为0的对象问题(issue#252@Github)

-------------------------------------------------------------------------------------------------------------

## 4.4.1

### 新特性
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,21 +86,21 @@ Hutool是Hu + tool的自造词,谐音“糊涂”,寓意追求“万事都
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>
```

### Gradle
```
compile 'cn.hutool:hutool-all:4.4.1'
compile 'cn.hutool:hutool-all:4.4.2'
```

### 非Maven项目

点击以下任一链接,下载`hutool-all-X.X.X.jar`即可:

- [Maven中央库1](https://repo1.maven.org/maven2/cn/hutool/hutool-all/4.4.1/)
- [Maven中央库2](http://repo2.maven.org/maven2/cn/hutool/hutool-all/4.4.1/)
- [Maven中央库1](https://repo1.maven.org/maven2/cn/hutool/hutool-all/4.4.2/)
- [Maven中央库2](http://repo2.maven.org/maven2/cn/hutool/hutool-all/4.4.2/)

> 注意
> Hutool只支持JDK7+,对应Android平台没有测试,部分方法并不支持。
Expand Down
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<div class="js-fullheight-home fh5co-copy-inner">
<h1>
<b style="font-size: 180%;margin-left:-10px">Hutool</b>
<span style="font-size: 35%">v4.4.1</span>
<span style="font-size: 35%">v4.4.2</span>
</h1>
<h2>A set of tools that keep Java sweet.</h2>
<div style="margin-top: 100px">
Expand Down Expand Up @@ -143,12 +143,12 @@ <h2>A set of tools that keep Java sweet.</h2>
<code>&lt;dependency&gt;
&lt;groupId&gt;cn.hutool&lt;/groupId&gt;
&lt;artifactId&gt;hutool-all&lt;/artifactId&gt;
&lt;version&gt;4.4.1&lt;/version&gt;
&lt;version&gt;4.4.2&lt;/version&gt;
&lt;/dependency&gt;</code>
</pre>
<div>Gradle:</div>
<pre style="background: none; padding: 0;margin: 0;border: none;">
<code>compile 'cn.hutool:hutool-all:4.4.1'</code>
<code>compile 'cn.hutool:hutool-all:4.4.2'</code>
</pre>
<p>
<a href="http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22hutool-all%22" class="btn btn-primary btn-outline" target="_blank">从Maven安装</a>
Expand Down
2 changes: 1 addition & 1 deletion hutool-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.hutool</groupId>
<artifactId>hutool-parent</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</parent>

<artifactId>hutool-all</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hutool-aop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>cn.hutool</groupId>
<artifactId>hutool-parent</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</parent>

<artifactId>hutool-aop</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hutool-bloomFilter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.hutool</groupId>
<artifactId>hutool-parent</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</parent>

<artifactId>hutool-bloomFilter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hutool-cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.hutool</groupId>
<artifactId>hutool-parent</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</parent>

<artifactId>hutool-cache</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hutool-captcha/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>cn.hutool</groupId>
<artifactId>hutool-parent</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</parent>

<artifactId>hutool-captcha</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hutool-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>cn.hutool</groupId>
<artifactId>hutool-parent</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</parent>

<artifactId>hutool-core</artifactId>
Expand Down
Loading

0 comments on commit 84be6d3

Please sign in to comment.