diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b77f50..6538ca9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0" + ".": "0.8.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index cddcf49..defd20a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.8.0](https://github.com/PierreBeucher/cloudypad/compare/v0.7.0...v0.8.0) (2024-11-30) + + +### Features + +* bump driver version and more flexible install method ([ea8a1bf](https://github.com/PierreBeucher/cloudypad/commit/ea8a1bf899005d09419a99769f4d66e4c69affc1)) +* **doc:** rewrote doc as mdbook ([c97de91](https://github.com/PierreBeucher/cloudypad/commit/c97de911db95437f1af168dc556a78ea46abdcc3)) +* more automated Moonlight pairing ([6f8029e](https://github.com/PierreBeucher/cloudypad/commit/6f8029ea48a1c056f6781754a33cf0144b37b97b)) + + +### Bug Fixes + +* Azure start should use start() and not restart() function ([7fc38aa](https://github.com/PierreBeucher/cloudypad/commit/7fc38aacc27b263c62b3af52ee4e740d3b7ac2e5)) +* fixed Cloud image to avoid reproducibility issues ([0cca532](https://github.com/PierreBeucher/cloudypad/commit/0cca53243e462c5e4c1d41a8e513d1973421eec3)) +* post reboot delay to avoid too-early continue ([a257d28](https://github.com/PierreBeucher/cloudypad/commit/a257d28410145c4b8b2512b0b91f473e0817a853)) +* prompt error on missing AWS region in user's config ([4e1eaab](https://github.com/PierreBeucher/cloudypad/commit/4e1eaab413e4625a1698783a543ed79399ef7206)) + ## [0.7.0](https://github.com/PierreBeucher/cloudypad/compare/v0.6.0...v0.7.0) (2024-09-15) diff --git a/cloudypad.sh b/cloudypad.sh index 549af51..3633a99 100755 --- a/cloudypad.sh +++ b/cloudypad.sh @@ -11,7 +11,7 @@ if [ -n "$CLOUDYPAD_CLI_LAUNCHER_DEBUG" ]; then set -x fi -CLOUDYPAD_VERSION=0.7.0 +CLOUDYPAD_VERSION=0.8.0 CLOUDYPAD_IMAGE="${CLOUDYPAD_IMAGE:-"crafteo/cloudypad:$CLOUDYPAD_VERSION"}" CLOUDYPAD_TARGET_IMAGE="crafteo/cloudypad-local-runner:local" diff --git a/flake.nix b/flake.nix index f0c363d..f657a94 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; - cloudypadVersion = "0.7.0"; + cloudypadVersion = "0.8.0"; in { packages = rec { default = cloudypad; @@ -18,7 +18,7 @@ src = pkgs.fetchurl { url = "https://raw.githubusercontent.com/PierreBeucher/cloudypad/v${cloudypadVersion}/cloudypad.sh"; - hash = "sha256:0djhdm703vbvvdjzxa2qbdjc593jgb9yikdpwa2qg89lmyg8iwf7"; + hash = "sha256:1hvgafqkfspim20dm1wfs6bsycrhmq5zmwc1z7wq0lv67gyplvv5"; }; phases = [ "installPhase" ]; diff --git a/install.sh b/install.sh index 01cbbc6..e4b8fc7 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,7 @@ set -e # Installation arguments # Override by setting related environment variable -DEFAULT_CLOUDYPAD_SCRIPT_REF=v0.7.0 +DEFAULT_CLOUDYPAD_SCRIPT_REF=v0.8.0 CLOUDYPAD_HOME=${CLOUDYPAD_HOME:-"$HOME/.cloudypad"} CLOUDYPAD_SCRIPT_REF=${CLOUDYPAD_SCRIPT_REF:-$DEFAULT_CLOUDYPAD_SCRIPT_REF} diff --git a/package-lock.json b/package-lock.json index a14eb68..fe182a3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cloudypad", - "version": "0.7.0", + "version": "0.8.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cloudypad", - "version": "0.7.0", + "version": "0.8.0", "license": "ISC", "dependencies": { "@aws-sdk/client-account": "^3.616.0", diff --git a/package.json b/package.json index fc18cca..e9d35cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cloudypad", - "version": "0.7.0", + "version": "0.8.0", "description": "", "main": "index.js", "scripts": {