From 0241e236bbfd2b9139ad09a99a06d214ba1b4310 Mon Sep 17 00:00:00 2001 From: Jose Ramirez Date: Fri, 25 Nov 2022 18:06:51 -0400 Subject: [PATCH] Bump to 1.0.5 --- CHANGELOG.md | 6 ++++++ README-es.md | 2 +- README.md | 2 +- package.json | 2 +- src/app.resolver.spec.ts | 2 +- src/app.resolver.ts | 2 +- 6 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c76c78a..c49a8cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README-es.md b/README-es.md index 306f57b..5491e19 100644 --- a/README-es.md +++ b/README-es.md @@ -250,7 +250,7 @@ query { ```graphql { "data": { - "version": "v1.0.1" + "version": "v1.0.5" } } ``` diff --git a/README.md b/README.md index cf2306b..86f77c0 100644 --- a/README.md +++ b/README.md @@ -250,7 +250,7 @@ query { ```graphql { "data": { - "version": "v1.0.1" + "version": "v1.0.5" } } ``` diff --git a/package.json b/package.json index ccdb8b5..62bbca4 100644 --- a/package.json +++ b/package.json @@ -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 ", "license": "MIT", diff --git a/src/app.resolver.spec.ts b/src/app.resolver.spec.ts index 5900bd7..d77938a 100644 --- a/src/app.resolver.spec.ts +++ b/src/app.resolver.spec.ts @@ -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') }) }) }) diff --git a/src/app.resolver.ts b/src/app.resolver.ts index a73c993..112a3f5 100644 --- a/src/app.resolver.ts +++ b/src/app.resolver.ts @@ -9,6 +9,6 @@ export class AppResolver { @Query(/* istanbul ignore next */ () => String) version(): string { - return 'v1.0.4' + return 'v1.0.5' } }