Skip to content

Commit

Permalink
0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Electr1Xx committed Sep 14, 2023
1 parent 974e3ff commit f4bc54e
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 11 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - 2023-09-14
### Changed
- `@rarimo/rarime-connector`: `snap` version

### Fixed
- `@rarimo/rarime`: manifest shasum on npm


## [0.3.0] - 2023-09-13
### Added
- `@rarimo/rarime`: optional parameter `blockHeight` in `loadDataFromRarimoCore` method
Expand All @@ -23,7 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Implemented `@rarimo/rarime-connector` and `@rarimo/rarime` packages

[Unreleased]: https://github.com/rarimo/rarime/compare/0.3.0...HEAD
[Unreleased]: https://github.com/rarimo/rarime/compare/0.3.1...HEAD
[0.3.1]: https://github.com/rarimo/rarime/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/rarimo/rarime/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/rarimo/rarime/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/rarimo/rarime/releases/tag/0.1.0
2 changes: 1 addition & 1 deletion packages/connector/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/rarime-connector",
"version": "0.3.0",
"version": "0.3.1",
"description": "Facilitates interaction between a DApp and Rarime MetaMask snap",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/connector/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const defaultSnapOrigin = 'npm:@rarimo/rarime';

export const enableSnap = async (
snapOrigin?: string,
version = '0.3.0',
version = '0.3.1',
): Promise<MetamaskSnap> => {
const snapId = snapOrigin ?? defaultSnapOrigin;

Expand Down
2 changes: 1 addition & 1 deletion packages/site/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "site",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"license": "(MIT-0 OR Apache-2.0)",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions packages/snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rarimo/rarime",
"version": "0.3.0",
"version": "0.3.1",
"description": "Rarime is a MetaMask Snap that safely holds any of your credentials and allows you to prove your identity without revealing any personal data. Powered by Rarimo Protocol and Zero-Knowledge Proof technology.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -29,7 +29,7 @@
"test": "jest",
"typia:generate": "typia generate --input src/typia-templates --output src/typia-generated --project tsconfig.json",
"generate-ether-types": "typechain --target=ethers-v5 'abis/**/*.json' --out-dir src/types/contracts",
"prepublishOnly": "yarn build"
"prepublishOnly": "yarn && yarn build"
},
"dependencies": {
"@ethersproject/abi": "5.0.0",
Expand All @@ -44,7 +44,7 @@
"@metamask/snaps-jest": "0.35.2-flask.1",
"@metamask/snaps-types": "0.32.2",
"@metamask/snaps-ui": "0.32.2",
"@rarimo/rarime-connector": "0.3.0",
"@rarimo/rarime-connector": "0.3.1",
"buffer": "6.0.3",
"ethers": "5.7.2",
"intl": "1.2.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "0.3.0",
"version": "0.3.1",
"description": "Rarime is a MetaMask Snap that safely holds any of your credentials and allows you to prove your identity without revealing any personal data. Powered by Rarimo Protocol and Zero-Knowledge Proof technology.",
"proposedName": "Rarime",
"repository": {
"type": "git",
"url": "https://github.com/rarimo/rarime.git"
},
"source": {
"shasum": "32yzbpCI9IByO1qGCpylwVn2HDydWc3QG85je9eSgyE=",
"shasum": "OEBh59cxNso5PO3CrBzhAzRjBrUZrkcwFd5bCn3fEiM=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6272,7 +6272,7 @@ __metadata:
languageName: node
linkType: hard

"@rarimo/[email protected].0, @rarimo/rarime-connector@workspace:packages/connector":
"@rarimo/[email protected].1, @rarimo/rarime-connector@workspace:packages/connector":
version: 0.0.0-use.local
resolution: "@rarimo/rarime-connector@workspace:packages/connector"
dependencies:
Expand Down Expand Up @@ -6315,7 +6315,7 @@ __metadata:
"@metamask/snaps-jest": 0.35.2-flask.1
"@metamask/snaps-types": 0.32.2
"@metamask/snaps-ui": 0.32.2
"@rarimo/rarime-connector": 0.3.0
"@rarimo/rarime-connector": 0.3.1
"@typechain/ethers-v5": 11.1.1
"@types/intl": 1.2.0
"@types/uuid": 9.0.2
Expand Down

0 comments on commit f4bc54e

Please sign in to comment.