Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jan 3, 2023
1 parent 75b540c commit ac5f8e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ To use with [Gradle](https://gradle.org/), include the following dependency in y
```gradle
repositories {
mavenCentral()
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") } // only needed for SNAPSHOT
}
dependencies {
implementation("net.thauvin.erik:urlencoder:0.9-SNAPSHOT")
implementation("net.thauvin.erik:urlencoder:1.0.0")
}
```

Instructions for using with Maven, Ivy, etc. can be found on Maven Central.
Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/urlencoder).

2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {

description = "A simple library to encode/decode URL parameters"
group = "net.thauvin.erik"
version = "0.9-SNAPSHOT"
version = "1.0.0"


val mavenName = "UrlEncoder"
Expand Down
2 changes: 1 addition & 1 deletion lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId>
<artifactId>urlencoder</artifactId>
<version>0.9-SNAPSHOT</version>
<version>1.0.0</version>
<name>UrlEncoder</name>
<description>A simple library to encode/decode URL parameters</description>
<url>https://github.com/ethauvin/urlencoder</url>
Expand Down

0 comments on commit ac5f8e5

Please sign in to comment.