Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dchest committed Apr 23, 2017
1 parent 9e168b0 commit 9f0ca9f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -11,5 +11,5 @@
]
}
},
"version": "0.1.0"
"version": "0.1.1"
}
4 changes: 2 additions & 2 deletions packages/aes/package.json
@@ -1,6 +1,6 @@
{
"name": "@stablelib/aes",
"version": "0.0.1",
"version": "0.1.1",
"description": "AES block cipher (Advanced Encryption Standard)",
"main": "./dist/aes.js",
"typings": "./dist/aes.d.ts",
Expand All @@ -16,7 +16,7 @@
},
"dependencies": {
"@stablelib/binary": "^0.0.1",
"@stablelib/blockcipher": "^0.0.1",
"@stablelib/blockcipher": "^0.1.1",
"@stablelib/wipe": "^0.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/blockcipher/package.json
@@ -1,6 +1,6 @@
{
"name": "@stablelib/blockcipher",
"version": "0.0.1",
"version": "0.1.1",
"description": "Block cipher interface declaration",
"main": "./dist/blockcipher.js",
"typings": "./dist/blockcipher.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/cmac/package.json
@@ -1,6 +1,6 @@
{
"name": "@stablelib/cmac",
"version": "0.0.2",
"version": "0.1.1",
"description": "CMAC message authentication code",
"main": "./dist/cmac.js",
"typings": "./dist/cmac.d.ts",
Expand All @@ -15,12 +15,12 @@
"bench": "node ./dist/cmac.bench.js"
},
"dependencies": {
"@stablelib/blockcipher": "^0.0.1",
"@stablelib/blockcipher": "^0.1.1",
"@stablelib/constant-time": "^0.0.2",
"@stablelib/wipe": "^0.0.1"
},
"devDependencies": {
"@stablelib/aes": "^0.0.1",
"@stablelib/aes": "^0.1.1",
"@stablelib/benchmark": "^0.0.1",
"@stablelib/hex": "^0.0.1"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/ctr/package.json
@@ -1,6 +1,6 @@
{
"name": "@stablelib/ctr",
"version": "0.0.1",
"version": "0.1.1",
"description": "Counter block cipher mode (CTR)",
"main": "./dist/ctr.js",
"typings": "./dist/ctr.d.ts",
Expand All @@ -15,11 +15,11 @@
"bench": "node ./dist/ctr.bench.js"
},
"dependencies": {
"@stablelib/blockcipher": "^0.0.1",
"@stablelib/blockcipher": "^0.1.1",
"@stablelib/wipe": "^0.0.1"
},
"devDependencies": {
"@stablelib/aes": "^0.0.1",
"@stablelib/aes": "^0.1.1",
"@stablelib/benchmark": "^0.0.1",
"@stablelib/hex": "^0.0.1"
}
Expand Down
8 changes: 4 additions & 4 deletions packages/gcm/package.json
@@ -1,6 +1,6 @@
{
"name": "@stablelib/gcm",
"version": "0.0.2",
"version": "0.1.1",
"description": "GCM authenticated encryption mode with additional data (AEAD)",
"main": "./dist/gcm.js",
"typings": "./dist/gcm.d.ts",
Expand All @@ -17,13 +17,13 @@
"dependencies": {
"@stablelib/aead": "^0.0.1",
"@stablelib/binary": "^0.0.1",
"@stablelib/blockcipher": "^0.0.1",
"@stablelib/blockcipher": "^0.1.1",
"@stablelib/constant-time": "^0.0.2",
"@stablelib/ctr": "^0.0.1",
"@stablelib/ctr": "^0.1.1",
"@stablelib/wipe": "^0.0.1"
},
"devDependencies": {
"@stablelib/aes": "^0.0.1",
"@stablelib/aes": "^0.1.1",
"@stablelib/benchmark": "^0.0.1",
"@stablelib/hex": "^0.0.1"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/scrypt/package.json
@@ -1,6 +1,6 @@
{
"name": "@stablelib/scrypt",
"version": "0.1.0",
"version": "0.1.1",
"description": "Scrypt sequential memory-hard key derivation function (RFC 7914)",
"main": "./dist/scrypt.js",
"typings": "./dist/scrypt.d.ts",
Expand Down

0 comments on commit 9f0ca9f

Please sign in to comment.