Skip to content

Commit 06f1fe2

Browse files
[AUTOPR] Automatic updates (#25)
* [AUTOPR] Fix misspelling --------- Co-authored-by: nicolaasuni-vonage <[email protected]>
1 parent f3ce138 commit 06f1fe2

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
.pytest_cache
1717
.tmp
1818
.venv
19+
.vscode
1920
/Dockerfile
2021
__pycache__
2122
build

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Also includes:
3636

3737
-----------------------------------------------------------------
3838

39+
3940
<a name="description"></a>
4041
## Description
4142

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.21
1+
1.5.22

c/doc/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = "NumKey"
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 1.5.21
35+
PROJECT_NUMBER = 1.5.22
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

go/src/numkey.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func encodeNumber(number string) uint64 {
6666
size := len(number)
6767
if size > NumMaxLen {
6868
number = number[(size - NumMaxLen):size] // last 15 digits
69-
size = 0 // flag non-revesible encoding
69+
size = 0 // flag non-reversible encoding
7070
}
7171
num, err := strconv.ParseUint(number, 10, 64)
7272
if err != nil {

java/.gitignore

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# Ignore Gradle project-specific cache directory
21
.gradle
3-
4-
# Ignore Gradle build output directory
5-
build
62
.idea
3+
bin
4+
build

java/src/main/java/com/nexmo/numkey/NumKey.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ private static long encodeNumber(byte[] number) {
7373
int len = number.length;
7474
if (len > NKNUMMAXLEN) {
7575
j = (len - NKNUMMAXLEN); // last 15 digits
76-
len = 0; // flag non-revesible encoding
76+
len = 0; // flag non-reversible encoding
7777
}
7878
for (i = j; i < number.length; i++) {
7979
b = (int) number[i] - '0';

javascript/src/numkey.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function encodeNumber(number) {
6767
var len = size;
6868
if (size > NKNUMMAXLEN) {
6969
j = (size - NKNUMMAXLEN); // last 15 digits
70-
len = 0; // flag non-revesible encoding
70+
len = 0; // flag non-reversible encoding
7171
}
7272
for (i = j; i < size; i++) {
7373
b = (number.charCodeAt(i) - NKZEROSHIFT);

python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def run(self):
3030

3131
setup(
3232
name="numkey",
33-
version="1.5.21.1",
33+
version="1.5.22.1",
3434
keywords=("numkey E.164 shortcode lvn did encoding"),
3535
description="NumKey Bindings for Python",
3636
long_description=read("../README.md"),

0 commit comments

Comments
 (0)