Skip to content

Commit

Permalink
0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterwb committed Mar 20, 2020
1 parent f7f0af1 commit 667ae84
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -178,7 +178,7 @@ Available through [**JitPack**](https://jitpack.io/#com.hunterwb/any-ascii)
<dependency>
<groupId>com.hunterwb</groupId>
<artifactId>any-ascii</artifactId>
<version>0.1.3</version>
<version>0.1.4</version>
</dependency>
```

Expand All @@ -192,7 +192,7 @@ repositories {

```groovy
dependencies {
implementation 'com.hunterwb:any-ascii:0.1.3'
implementation 'com.hunterwb:any-ascii:0.1.4'
}
```

Expand Down Expand Up @@ -260,7 +260,7 @@ Use latest release:
```toml
# Cargo.toml
[dependencies]
any_ascii = "0.1.3"
any_ascii = "0.1.4"
```

Use pre-release:
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>com.hunterwb</groupId>
<artifactId>any-ascii</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>

<name>any-ascii</name>
<description>Unicode to ASCII transliteration</description>
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "any-ascii",
"version": "0.1.4-dev",
"version": "0.1.4",
"description": "Unicode to ASCII transliteration",
"homepage": "https://github.com/hunterwb/any-ascii",
"license": "ISC",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>com.hunterwb</groupId>
<artifactId>any-ascii-build</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Expand Up @@ -14,7 +14,7 @@ def read(fname):
author="Hunter WB",
author_email="hunter@hunterwb.com",
name='anyascii',
version='0.1.4-dev',
version='0.1.4',
description='Unicode to ASCII transliteration',
long_description=read('../README.md'),
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion ruby/any_ascii.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'any_ascii'
s.version = '0.1.4-dev'
s.version = '0.1.4'
s.summary = 'Unicode to ASCII transliteration'
s.description =
'Unicode to ASCII transliteration.' +
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "any_ascii"
version = "0.1.4-dev"
version = "0.1.4"
authors = ["Hunter WB <hunter@hunterwb.com>"]
homepage = "https://github.com/hunterwb/any-ascii"
repository = "https://github.com/hunterwb/any-ascii"
Expand Down

0 comments on commit 667ae84

Please sign in to comment.