Skip to content

Commit 33776a1

Browse files
authored
release 1.0.9 (#68)
1 parent 138cedd commit 33776a1

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ else()
1616
set(BUILD_SHARED_LIBS ON)
1717
endif()
1818

19-
project(ecc VERSION 1.0.8)
19+
project(ecc VERSION 1.0.9)
2020
project(ecc LANGUAGES C)
2121

2222
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
Library to work with elliptic-curve cryptography based on [libsodium](https://github.com/jedisct1/libsodium)
1515
and [blst](https://github.com/supranational/blst).
1616

17-
| Bindings | | |
18-
|------------|-------------------------------|---|
19-
| Java | [jvm/ecc](bindings/jvm) | [![maven](https://img.shields.io/maven-central/v/org.ssohub/ecc.svg?label=maven)](https://search.maven.org/search?q=g:%22org.ssohub%22%20AND%20a:%22ecc%22) |
20-
| Javascript | [js/ecc](bindings/js) | [![npm](https://img.shields.io/npm/v/@aldenml/ecc)](https://www.npmjs.com/package/@aldenml/ecc) |
21-
| Python | [python/ecc](bindings/python) | [![PyPI version](https://badge.fury.io/py/libecc.svg)](https://badge.fury.io/py/libecc) |
17+
| Bindings | | |
18+
|------------|----------------------------------|---|
19+
| Java | [jvm/ecc](bindings/jvm) | [![maven](https://img.shields.io/maven-central/v/org.ssohub/ecc.svg?label=maven)](https://search.maven.org/search?q=g:%22org.ssohub%22%20AND%20a:%22ecc%22) |
20+
| Javascript | [js/ecc](bindings/js) | [![npm](https://img.shields.io/npm/v/@aldenml/ecc)](https://www.npmjs.com/package/@aldenml/ecc) |
21+
| Python | [python/libecc](bindings/python) | [![PyPI version](https://badge.fury.io/py/libecc.svg)](https://badge.fury.io/py/libecc) |
2222

2323
### Features
2424

bindings/js/dist/ecc.dev.js

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

bindings/js/dist/ecc.min.js

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

bindings/js/package-lock.json

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

bindings/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aldenml/ecc",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"description": "elliptic curves crypto functions",
55
"main": "index.js",
66
"types": "./dist/index.d.ts",

bindings/jvm/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group = "org.ssohub"
15-
version = "1.0.8"
15+
version = "1.0.9"
1616

1717
java {
1818
sourceCompatibility = JavaVersion.VERSION_1_8

bindings/python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = libecc
3-
version = 1.0.8
3+
version = 1.0.9
44
author = Alden Torres
55
author_email = aldenml@gmail.com
66
description = elliptic curves crypto functions

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sonar.projectName=ecc
22
sonar.projectKey=aldenml_ecc
33
sonar.organization=aldenml
4-
sonar.projectVersion=1.0.8
4+
sonar.projectVersion=1.0.9
55

66
sonar.sources=src
77
sonar.sourceEncoding=UTF-8

0 commit comments

Comments
 (0)