Skip to content

Commit

Permalink
Merge pull request #26 from ideal-lab5/release/0.1.1
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
juangirini authored Oct 15, 2024
2 parents e694968 + 3644655 commit 364cbda
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1] - 2023-10-15

### Fixed

- Readme file example usage fixed.
- TS config file fixed.

## [0.1.0] - 2023-10-14

### Added

- Initial implementation of the Murmur API wrapper.

[unreleased]: https://github.com/ideal-lab5/murmur.js/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/ideal-lab5/murmur.js/releases/tag/v0.1.1
[0.1.0]: https://github.com/ideal-lab5/murmur.js/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ You need to configure axios and polkadot-js instances to be injected into the Mu
```javascript
import { ApiPromise, WsProvider, Keyring } from '@polkadot/api'
import axios from 'axios'
import { MurmurClient } from 'murmur.js'
import { MurmurClient } from '@ideallabs/murmur.js'

/* Polkadot API initialization */
const provider = new WsProvider('ws://127.0.0.1:9944')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ideallabs/murmur.js",
"version": "0.1.0",
"version": "0.1.1",
"description": "A wrapper to interact with the Murmur API",
"license": "Apache-2.0",
"repository": "https://github.com/ideal-lab5/murmur.js",
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"typeRoots": ["node_modules/@types"],
"types": ["jest", "node"]
"typeRoots": ["node_modules/@types"]
},
"include": ["./src/**/*"],
"exclude": ["node_modules"]
Expand Down

0 comments on commit 364cbda

Please sign in to comment.