From d784f4ad99a4397d089b6a3e0f786d9530ed93cf Mon Sep 17 00:00:00 2001 From: exAspArk Date: Sun, 10 Nov 2024 20:07:28 -0500 Subject: [PATCH] Release v0.3.0 --- CHANGELOG.md | 4 ++++ scripts/install.sh | 2 +- src/main.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e49c49..e56cd73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### [v0.3.0](https://github.com/BemiHQ/BemiDB/compare/v0.2.0...v0.3.0) - 2024-11-10 + +- Fix Postgres `COPY` command on Linux [#8](https://github.com/BemiHQ/BemiDB/pull/8) + ### [v0.2.0](https://github.com/BemiHQ/BemiDB/compare/v0.1.0...v0.2.0) - 2024-11-08 - Bump DuckDB version to 1.1.3 diff --git a/scripts/install.sh b/scripts/install.sh index 262aa56..9e4d55a 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION="0.2.0" +VERSION="0.3.0" # Detect OS and architecture OS=$(uname -s | tr '[:upper:]' '[:lower:]') diff --git a/src/main.go b/src/main.go index af26d75..5c7264c 100644 --- a/src/main.go +++ b/src/main.go @@ -5,7 +5,7 @@ import ( "fmt" ) -const VERSION = "0.1.0" +const VERSION = "0.3.0" func main() { flag.Parse()