Version 1.0.0

This commit is contained in:
Erik C. Thauvin 2023-01-02 23:39:54 -08:00
parent 75b540c7ee
commit ac5f8e5334
3 changed files with 5 additions and 5 deletions

View file

@ -38,13 +38,13 @@ To use with [Gradle](https://gradle.org/), include the following dependency in y
```gradle ```gradle
repositories { repositories {
mavenCentral() 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 { 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).

View file

@ -23,7 +23,7 @@ plugins {
description = "A simple library to encode/decode URL parameters" description = "A simple library to encode/decode URL parameters"
group = "net.thauvin.erik" group = "net.thauvin.erik"
version = "0.9-SNAPSHOT" version = "1.0.0"
val mavenName = "UrlEncoder" val mavenName = "UrlEncoder"

View file

@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId> <groupId>net.thauvin.erik</groupId>
<artifactId>urlencoder</artifactId> <artifactId>urlencoder</artifactId>
<version>0.9-SNAPSHOT</version> <version>1.0.0</version>
<name>UrlEncoder</name> <name>UrlEncoder</name>
<description>A simple library to encode/decode URL parameters</description> <description>A simple library to encode/decode URL parameters</description>
<url>https://github.com/ethauvin/urlencoder</url> <url>https://github.com/ethauvin/urlencoder</url>