From 547a3d296402a5b517821847c05ef33dfddfac4a Mon Sep 17 00:00:00 2001 From: frectonz Date: Mon, 18 Nov 2024 11:06:36 +0300 Subject: [PATCH] chore: 0.0.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- META.json | 4 ++-- flake.nix | 2 +- nix/build.nix | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6658050..169c194 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1109,7 +1109,7 @@ dependencies = [ [[package]] name = "pglite_fusion" -version = "0.0.0" +version = "0.0.1" dependencies = [ "pgrx", "pgrx-tests", diff --git a/Cargo.toml b/Cargo.toml index a05977f..342bd22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pglite_fusion" -version = "0.0.0" +version = "0.0.1" edition = "2021" [lib] diff --git a/META.json b/META.json index 3c82eae..57b8ee4 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.0", + "version": "0.0.1", "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.0" + "version": "0.0.1" } }, "prereqs": { diff --git a/flake.nix b/flake.nix index 49251c2..1278b5d 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.0"; + version = "0.0.1"; postgres = pkgs.dockerTools.pullImage { imageName = "postgres"; diff --git a/nix/build.nix b/nix/build.nix index 4b40858..b88893f 100644 --- a/nix/build.nix +++ b/nix/build.nix @@ -42,7 +42,7 @@ let in pkgs.rustPlatform.buildRustPackage { pname = "pglite-fusion"; - version = "0.0.0"; + version = "0.0.1"; src = pkgs.lib.cleanSourceWith { src = pkgs.lib.cleanSource ../.;