diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d74991a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ + +# 1.0.0 (2020-04-02) + + +### Features + +* Implement BulkheadIsolationPolicy ([0a6fd61](https://github.com/Diplomatiq/resily/commit/0a6fd61)), closes [#199](https://github.com/Diplomatiq/resily/issues/199) +* Implement CachePolicy ([0e39ded](https://github.com/Diplomatiq/resily/commit/0e39ded)), closes [#207](https://github.com/Diplomatiq/resily/issues/207) +* Implement CircuitBreakerPolicy ([1351ea1](https://github.com/Diplomatiq/resily/commit/1351ea1)), closes [#193](https://github.com/Diplomatiq/resily/issues/193) +* Implement FallbackPolicy ([5225f73](https://github.com/Diplomatiq/resily/commit/5225f73)), closes [#185](https://github.com/Diplomatiq/resily/issues/185) +* Implement NopPolicy ([4b257ef](https://github.com/Diplomatiq/resily/commit/4b257ef)), closes [#208](https://github.com/Diplomatiq/resily/issues/208) +* Implement PolicyCombination ([e92d537](https://github.com/Diplomatiq/resily/commit/e92d537)), closes [#209](https://github.com/Diplomatiq/resily/issues/209) +* Implement RetryPolicy ([1b0ce44](https://github.com/Diplomatiq/resily/commit/1b0ce44)), closes [#46](https://github.com/Diplomatiq/resily/issues/46) +* Implement TimeoutPolicy ([75bd2ee](https://github.com/Diplomatiq/resily/commit/75bd2ee)), closes [#164](https://github.com/Diplomatiq/resily/issues/164) + + + diff --git a/package-lock.json b/package-lock.json index 7824c32..5e95153 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@diplomatiq/resily", - "version": "0.0.0", + "version": "1.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3e298ae..ab4bb01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@diplomatiq/resily", - "version": "0.0.0", + "version": "1.0.0", "description": "Resily is a TypeScript resilience and transient-fault-handling library that allows developers to express policies such as Retry, Fallback, Circuit Breaker, Timeout, Bulkhead Isolation, and Cache. Inspired by App-vNext/Polly.", "main": "dist/main.js", "module": "dist/main.js", diff --git a/sonar-project.properties b/sonar-project.properties index 548ca2b..dbf6bfa 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.organization=diplomatiq sonar.projectKey=Diplomatiq_resily sonar.projectName=resily -sonar.projectVersion=0.0.0 +sonar.projectVersion=1.0.0 sonar.sources=src sonar.tests=test