Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.1.0 #94

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.12"
".": "0.1.0"
}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [0.1.0](https://github.com/open-feature/playground/compare/v0.0.12...v0.1.0) (2022-10-11)


### Features

* add flagsmith support to the playground ([#80](https://github.com/open-feature/playground/issues/80)) ([ef85b84](https://github.com/open-feature/playground/commit/ef85b84710592c5e1a0a4d916ebd4df3720f92f3))
* add optional remote fib service ([#85](https://github.com/open-feature/playground/issues/85)) ([d5c9120](https://github.com/open-feature/playground/commit/d5c9120e2f9355b7d28e2dedab47cc2ea9300838))
* use image in docker compose ([#72](https://github.com/open-feature/playground/issues/72)) ([66c554e](https://github.com/open-feature/playground/commit/66c554ee702971429219330d8db3d3bdd1a97b9a))


### Bug Fixes

* add qemu ([f2991b7](https://github.com/open-feature/playground/commit/f2991b7ee56ff52e460b6477ba92fe06c694724f))
* address grammatical issues discovered in the tutorial ([#77](https://github.com/open-feature/playground/issues/77)) ([4834fcf](https://github.com/open-feature/playground/commit/4834fcf11037d656543068dd5f198d89622c6184)), closes [#74](https://github.com/open-feature/playground/issues/74)
* bump ci step versions ([#92](https://github.com/open-feature/playground/issues/92)) ([23aaddf](https://github.com/open-feature/playground/commit/23aaddff89a4bf173844dd7b5e92f5dc33c0cd49))
* container build process ([74f67b2](https://github.com/open-feature/playground/commit/74f67b25da9f0f18cf4a1480576bf837ec7169b4))
* disable monorepo tags in release please ([3a64a68](https://github.com/open-feature/playground/commit/3a64a68e5def97e8291c9f29fe84f792048ca5ca))
* disable QEMU ([#70](https://github.com/open-feature/playground/issues/70)) ([ecfcf84](https://github.com/open-feature/playground/commit/ecfcf8469287faae1d311c4d965a3d360545b35c))
* fix images ([eff82c3](https://github.com/open-feature/playground/commit/eff82c3459f1c12d35e190762ac9350ee5df3e44))
* remove component from tag ([febd5c0](https://github.com/open-feature/playground/commit/febd5c07d2667a0141b20bfea61ceb2e2c61c12d))
* remove unused asset option from the build target ([c940a3e](https://github.com/open-feature/playground/commit/c940a3e35b26ee144b04ad05486d8600b6ea5cd1))
* set default fib value to 45 ([1ec403a](https://github.com/open-feature/playground/commit/1ec403a69b6827daf80f43c1134161af75f85b3f))

## [0.0.12](https://github.com/open-feature/playground/compare/openfeature-v0.0.11...openfeature-v0.0.12) (2022-10-11)


Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.8'
services:
demo:
# image: ghcr.io/open-feature/playground:app-v0.0.12 # x-release-please-version
# image: ghcr.io/open-feature/playground:app-v0.1.0 # x-release-please-version
build:
dockerfile: ./packages/app/Dockerfile
ports:
Expand Down Expand Up @@ -35,7 +35,7 @@ services:
- CLOUDBEES_APP_KEY

fib-service:
# image: ghcr.io/open-feature/playground:fib-service-v0.0.12 # x-release-please-version
# image: ghcr.io/open-feature/playground:fib-service-v0.1.0 # x-release-please-version
build:
dockerfile: ./packages/fibonacci-service/Dockerfile
expose:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openfeature",
"version": "0.0.12",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"ui": "nx run ui:serve",
Expand Down