From a24b3e207703472ad78fe76636b520ca7d7e037d Mon Sep 17 00:00:00 2001 From: Marcelo Ochoa Date: Tue, 20 Aug 2024 10:20:09 -0300 Subject: [PATCH] release update v0.25.1 --- .github/workflows/docker-image.yml | 4 ++-- .vscode/settings.json | 3 +++ CHANGELOG.md | 4 ++++ Makefile | 4 ++-- README.md | 8 ++++---- 5 files changed, 15 insertions(+), 8 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index cfb1692..eb02f3b 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -26,6 +26,6 @@ jobs: context: . platforms: linux/amd64,linux/arm64 push: true - tags: daytonaio/daytona-docker-extension:0.24.0 + tags: daytonaio/daytona-docker-extension:0.25.1 build-args: | - "DAYTONA_SERVER_VERSION=v0.24.0" + "DAYTONA_SERVER_VERSION=v0.25.1" diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..082b194 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "makefile.configureOnOpen": false +} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd7a26..f4e5ee6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## v0.25.1 + +- Release update. + ## v0.24.0 - Release update. diff --git a/Makefile b/Makefile index 59d8f4e..8a0ec1c 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ all: clean extension install ORG=daytonaio -VERSION=0.24 -MINOR=0 +VERSION=0.25 +MINOR=1 IMAGE_NAME=$(ORG)/daytona-docker-extension DAYTONA_SERVER_VERSION=$(VERSION).${MINOR} TAGGED_IMAGE_NAME=$(IMAGE_NAME):$(DAYTONA_SERVER_VERSION) diff --git a/README.md b/README.md index a4f4ee7..3f68ea2 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ sudo chown -R "$(id -u):$(id -g)" /Users/Shared/daytona Until this extension is ready at Docker Extension Hub you can install just by executing: ```bash -$ docker extension install daytonaio/daytona-docker-extension:0.24.0 -Image not available locally, pulling daytonaio/daytona-docker-extension:0.24.0... -Extracting metadata and files for the extension "daytonaio/daytona-docker-extension:0.24.0" +$ docker extension install daytonaio/daytona-docker-extension:0.25.1 +Image not available locally, pulling daytonaio/daytona-docker-extension:0.25.1... +Extracting metadata and files for the extension "daytonaio/daytona-docker-extension:0.25.1" Installing service in Desktop VM... Setting additional compose attributes Installing Desktop extension UI for tab "Daytona"... @@ -79,7 +79,7 @@ Just ignore it, first line says Daytona Server is up and running, but *daytona w To uninstall the extension just execute: ```bash -$ docker extension uninstall daytonaio/daytona-docker-extension:0.24.0 +$ docker extension uninstall daytonaio/daytona-docker-extension:0.25.1 Extension "Daytona client tool" uninstalled successfully sudo rm -rf /Users/Shared/daytona ```