Skip to content

Commit

Permalink
Bump to 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
0xslipk committed Nov 25, 2022
1 parent 8587748 commit 0241e23
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.0.5
Published by **[blockcoders](https://github.com/blockcoders)** on **2022/11/25**
- [#13](https://github.com/blockcoders/nestjs-ethers/pull/13) add sync module
- [#12](https://github.com/blockcoders/nestjs-ethers/pull/12) fix test
- [#11](https://github.com/blockcoders/nestjs-ethers/pull/11) Fix env variables

## 1.0.4
Published by **[blockcoders](https://github.com/blockcoders)** on **2022/11/09**
- [#2e913c0](https://github.com/blockcoders/ink-substrate-explorer-api/commit/2e913c0bd7442116e93d44e38c2131b3cb4ae38c) Add ssl ca
Expand Down
2 changes: 1 addition & 1 deletion README-es.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ query {
```graphql
{
"data": {
"version": "v1.0.1"
"version": "v1.0.5"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ query {
```graphql
{
"data": {
"version": "v1.0.1"
"version": "v1.0.5"
}
}
```
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": "ink-substrate-explorer-api",
"version": "1.0.4",
"version": "1.0.5",
"description": "Ink Explorer is an application that provides Ink contracts related information on Substrate based blockchains.",
"author": "Blockcoders <engineering@blockcoders.io>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/app.resolver.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('AppResolver', () => {

describe('version', () => {
it('should return the current version', () => {
expect(resolver.version()).toEqual('v1.0.4')
expect(resolver.version()).toEqual('v1.0.5')
})
})
})
2 changes: 1 addition & 1 deletion src/app.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export class AppResolver {

@Query(/* istanbul ignore next */ () => String)
version(): string {
return 'v1.0.4'
return 'v1.0.5'
}
}

0 comments on commit 0241e23

Please sign in to comment.