diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e49c49..5f3dfb8 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 if Postgres is running remotely [#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()