Skip to content

Commit 0241e23

Browse files
committed
Bump to 1.0.5
1 parent 8587748 commit 0241e23

6 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.0.5
4+
Published by **[blockcoders](https://github.com/blockcoders)** on **2022/11/25**
5+
- [#13](https://github.com/blockcoders/nestjs-ethers/pull/13) add sync module
6+
- [#12](https://github.com/blockcoders/nestjs-ethers/pull/12) fix test
7+
- [#11](https://github.com/blockcoders/nestjs-ethers/pull/11) Fix env variables
8+
39
## 1.0.4
410
Published by **[blockcoders](https://github.com/blockcoders)** on **2022/11/09**
511
- [#2e913c0](https://github.com/blockcoders/ink-substrate-explorer-api/commit/2e913c0bd7442116e93d44e38c2131b3cb4ae38c) Add ssl ca

README-es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ query {
250250
```graphql
251251
{
252252
"data": {
253-
"version": "v1.0.1"
253+
"version": "v1.0.5"
254254
}
255255
}
256256
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ query {
250250
```graphql
251251
{
252252
"data": {
253-
"version": "v1.0.1"
253+
"version": "v1.0.5"
254254
}
255255
}
256256
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ink-substrate-explorer-api",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Ink Explorer is an application that provides Ink contracts related information on Substrate based blockchains.",
55
"author": "Blockcoders <engineering@blockcoders.io>",
66
"license": "MIT",

src/app.resolver.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('AppResolver', () => {
2424

2525
describe('version', () => {
2626
it('should return the current version', () => {
27-
expect(resolver.version()).toEqual('v1.0.4')
27+
expect(resolver.version()).toEqual('v1.0.5')
2828
})
2929
})
3030
})

src/app.resolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export class AppResolver {
99

1010
@Query(/* istanbul ignore next */ () => String)
1111
version(): string {
12-
return 'v1.0.4'
12+
return 'v1.0.5'
1313
}
1414
}

0 commit comments

Comments
 (0)