Skip to content

Commit

Permalink
publish v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sargue committed Jun 27, 2017
1 parent 086ca3f commit a1de0b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ Usage
Add the dependency to your project:

### Gradle
`compile 'net.sargue:java-time-jsptags:1.1.3'`
`compile 'net.sargue:java-time-jsptags:1.1.4'`

### Maven

```xml
<dependency>
<groupId>net.sargue</groupId>
<artifactId>java-time-jsptags</artifactId>
<version>1.1.3</version>
<version>1.1.4</version>
</dependency>
```

Expand Down Expand Up @@ -265,6 +265,9 @@ Build is based on gradle. See build.gradle included in the repository.
Changelog
---------

### v1.1.4
Made helper method public [by request](https://github.com/sargue/java-time-jsptags/issues/7).

### v1.1.3
Fixed issue [#5](https://github.com/sargue/java-time-jsptags/issues/5) about error messages.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'maven'

group = 'net.sargue'
archivesBaseName = 'java-time-jsptags'
version = '1.1.3'
version = '1.1.4'

sourceCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/sargue/time/jsptags/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ private static ResourceBundle findMatch(String basename, Locale pref) {
* for full. A date or time may be ommitted by specifying a style character '-'.
*
* @param style two characters from the set {"S", "M", "L", "F", "-"}
* @throws IllegalArgumentException if the style is invalid
* @throws JspException if the style is invalid
* @return a formatter for the specified style
*/
public static DateTimeFormatter createFormatterForStyle(String style)
Expand Down

0 comments on commit a1de0b0

Please sign in to comment.