Skip to content

Commit dbc3469

Browse files
committed
Version 2.0.0
1 parent 72caeb9 commit dbc3469

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

.idea/misc.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Include the following in your `bld` build file:
8686
repositories = List.of(MAVEN_CENTRAL, CENTRAL_SNAPSHOTS);
8787

8888
scope(compile).include(
89-
dependency("net.thauvin.erik.httpstatus","httpstatus", version(2, 0, 0, "SNAPSHOT"))
89+
dependency("net.thauvin.erik.httpstatus","httpstatus", version(2, 0, 0))
9090
);
9191
```
9292

@@ -104,7 +104,7 @@ repositories {
104104
}
105105
106106
dependencies {
107-
implementation 'net.thauvin.erik.httpstatus:httpstatus:2.0.0-SNAPSHOT'
107+
implementation 'net.thauvin.erik.httpstatus:httpstatus:2.0.0'
108108
}
109109
```
110110

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>net.thauvin.erik.httpstatus</groupId>
66
<artifactId>httpstatus</artifactId>
7-
<version>2.0.0-SNAPSHOT</version>
7+
<version>2.0.0</version>
88
<name>HttpStatus</name>
99
<description>HTTP Status Codes &amp; JSP Tag Library</description>
1010
<url>https://github.com/ethauvin/HttpStatus</url>

src/bld/java/net/thauvin/erik/httpstatus/HttpStatusBuild.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class HttpStatusBuild extends Project {
6262
public HttpStatusBuild() {
6363
pkg = "net.thauvin.erik.httpstatus";
6464
name = "HttpStatus";
65-
version = version(2, 0, 0, "SNAPSHOT");
65+
version = version(2, 0, 0);
6666

6767
var description = "HTTP Status Codes & JSP Tag Library";
6868
var url = "https://github.com/ethauvin/HttpStatus";

0 commit comments

Comments
 (0)