Skip to content

Commit 6c0d94b

Browse files
authored
Merge pull request #57 from VirgilSecurity/v4.0.0-alpha.8
v4.0.0-alpha.8
2 parents 5e7da8c + 45ea3dd commit 6c0d94b

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

packages/base-crypto/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@virgilsecurity/base-crypto",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "Virgil JavaScript Crypto Library is a high-level cryptographic library that allows you to perform all necessary operations for secure storing and transferring data and everything required to become HIPAA and GDPR compliant.",
55
"main": "./dist/base-crypto.cjs.js",
66
"module": "./dist/base-crypto.es.js",
@@ -23,7 +23,7 @@
2323
"@virgilsecurity/data-utils": "^0.1.4"
2424
},
2525
"peerDependencies": {
26-
"@virgilsecurity/core-foundation": "^0.1.0"
26+
"@virgilsecurity/core-foundation": "^0.1.1"
2727
},
2828
"devDependencies": {
2929
"@types/chai": "^4.1.7",

packages/base-crypto/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { setFoundationModules } from './foundationModules';
1+
export { getFoundationModules, setFoundationModules } from './foundationModules';
22
export { HashAlgorithm } from './HashAlgorithm';
33
export { KeyPairType } from './KeyPairType';
44
export { VirgilKeyPair } from './types';

packages/benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"benchmark": "^2.1.4",
1515
"buffer": "^5.2.1",
16-
"virgil-crypto": "^4.0.0-alpha.7",
16+
"virgil-crypto": "^4.0.0-alpha.8",
1717
"virgil-crypto-3": "npm:virgil-crypto@^3.2.6"
1818
},
1919
"devDependencies": {

packages/pythia-crypto/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@virgilsecurity/pythia-crypto",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Virgil Pythia Crypto library.",
55
"main": "./dist/node.cjs.js",
66
"module": "./dist/node.es.js",
@@ -25,7 +25,7 @@
2525
"prepare": "npm run clean && npm run build"
2626
},
2727
"dependencies": {
28-
"@virgilsecurity/core-pythia": "^0.1.0",
28+
"@virgilsecurity/core-pythia": "^0.1.1",
2929
"@virgilsecurity/crypto-types": "^0.1.3",
3030
"@virgilsecurity/data-utils": "^0.1.3"
3131
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export { initPythia } from './initPythia';
2-
export { setPythiaModules } from './pythiaModules';
2+
export { getPythiaModules, setPythiaModules } from './pythiaModules';
33
export { VirgilBrainKeyCrypto } from './VirgilBrainKeyCrypto';
44
export { VirgilPythiaCrypto } from './VirgilPythiaCrypto';

packages/virgil-crypto/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "virgil-crypto",
3-
"version": "4.0.0-alpha.7",
3+
"version": "4.0.0-alpha.8",
44
"description": "Virgil JavaScript Crypto Library is a high-level cryptographic library that allows you to perform all necessary operations for secure storing and transferring data and everything required to become HIPAA and GDPR compliant.",
55
"main": "./dist/node.cjs.js",
66
"module": "./dist/node.es.js",
@@ -25,8 +25,8 @@
2525
"prepare": "npm run clean && npm run build"
2626
},
2727
"dependencies": {
28-
"@virgilsecurity/base-crypto": "^0.4.4",
29-
"@virgilsecurity/core-foundation": "^0.1.0",
28+
"@virgilsecurity/base-crypto": "^0.4.5",
29+
"@virgilsecurity/core-foundation": "^0.1.1",
3030
"@virgilsecurity/sdk-crypto": "^0.4.4"
3131
},
3232
"devDependencies": {

packages/webpack-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"build": "webpack"
1212
},
1313
"dependencies": {
14-
"virgil-crypto": "^4.0.0-alpha.7"
14+
"virgil-crypto": "^4.0.0-alpha.8"
1515
},
1616
"devDependencies": {
1717
"file-loader": "^4.1.0",

0 commit comments

Comments
 (0)