diff --git a/Cargo.lock b/Cargo.lock index 169c194..e397079 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1109,7 +1109,7 @@ dependencies = [ [[package]] name = "pglite_fusion" -version = "0.0.1" +version = "0.0.2" dependencies = [ "pgrx", "pgrx-tests", diff --git a/Cargo.toml b/Cargo.toml index 342bd22..1529c09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pglite_fusion" -version = "0.0.1" +version = "0.0.2" edition = "2021" [lib] diff --git a/META.json b/META.json index 57b8ee4..a717e48 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "pglite_fusion", "abstract": "Embed an SQLite database in your PostgreSQL table", "description": "The pglite_fusion extension provides an SQLite type and functions to work with that type that let's you embed an SQLite database in your PostgreSQL table as a column type.", - "version": "0.0.1", + "version": "0.0.2", "maintainer": [ "Fraol Lemecha " ], @@ -12,7 +12,7 @@ "abstract": "Embed an SQLite database in your PostgreSQL table", "file": "src/lib.rs", "docfile": "README.md", - "version": "0.0.1" + "version": "0.0.2" } }, "prereqs": { diff --git a/flake.nix b/flake.nix index 1278b5d..b0aaf5e 100644 --- a/flake.nix +++ b/flake.nix @@ -67,7 +67,7 @@ cargo-pgrx = import ./nix/pgrx.nix { inherit pkgs; }; pname = "pglite-fusion"; - version = "0.0.1"; + version = "0.0.2"; postgres = pkgs.dockerTools.pullImage { imageName = "postgres"; diff --git a/nix/build.nix b/nix/build.nix index b88893f..0170e0c 100644 --- a/nix/build.nix +++ b/nix/build.nix @@ -42,7 +42,7 @@ let in pkgs.rustPlatform.buildRustPackage { pname = "pglite-fusion"; - version = "0.0.1"; + version = "0.0.2"; src = pkgs.lib.cleanSourceWith { src = pkgs.lib.cleanSource ../.;