Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
looly committed Feb 12, 2019
2 parents a9889cc + 62742d4 commit a574b45
Show file tree
Hide file tree
Showing 34 changed files with 491 additions and 315 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@

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

## 4.4.5

### 新特性
* 【core】 增加StrFormater代码逻辑可读性(pr#269@Github)
* 【core】 Validator中使用泛型
* 【core】 NumberUtil增加toBytes和toInt方法
* 【core】 XmlUtil增加format方法,支持缩进
* 【http】 SoapRequest增加executeBody方法(issue#IRN6I@Gitee)

### Bug修复
* 【core】 修复AnnotationUtil.getAnnotationValue获取对象错误问题(issue#271@Github)

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

## 4.4.4

### 新特性
Expand All @@ -11,7 +25,6 @@

### Bug修复
* 【core】 修复Profile中路径参数失效问题(issue#265@Github)
* 【core】 修复Profile中路径参数失效问题
* 【core】 修复MapConvert中值类型转换错误的问题(issue#268@Github)

-------------------------------------------------------------------------------------------------------------
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.4</version>
<version>4.4.5</version>
</dependency>
```

### Gradle
```
compile 'cn.hutool:hutool-all:4.4.4'
compile 'cn.hutool:hutool-all:4.4.5'
```

### 非Maven项目

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

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

> 注意
> 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.4</span>
<span style="font-size: 35%">v4.4.5</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.4&lt;/version&gt;
&lt;version&gt;4.4.5&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.4'</code>
<code>compile 'cn.hutool:hutool-all:4.4.5'</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.4</version>
<version>4.4.5</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.4</version>
<version>4.4.5</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.4</version>
<version>4.4.5</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.4</version>
<version>4.4.5</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.4</version>
<version>4.4.5</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.4</version>
<version>4.4.5</version>
</parent>

<artifactId>hutool-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ public static <T> T getAnnotationValue(AnnotatedElement annotationEle, Class<? e
return null;
}

final Method method = ReflectUtil.getMethodOfObj(annotationEle, propertyName);
final Method method = ReflectUtil.getMethodOfObj(annotation, propertyName);
if (null == method) {
return null;
}
return ReflectUtil.invoke(annotationEle, method);
return ReflectUtil.invoke(annotation, method);
}

/**
Expand Down
Loading

0 comments on commit a574b45

Please sign in to comment.