Skip to content

Commit a7f4900

Browse files
authored
Duckdb 1.2.2 (#12)
* Update Cargo.toml * Update Makefile * Update MainDistributionPipeline.yml
1 parent 82e6caf commit a7f4900

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/MainDistributionPipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Build extension binaries
1919
uses: duckdb/extension-ci-tools/.github/workflows/[email protected]
2020
with:
21-
duckdb_version: v1.2.0
21+
duckdb_version: v1.2.2
2222
ci_tools_version: main
2323
extension_name: pcap_reader
2424
extra_toolchains: rust;python3

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pcap_reader"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55

66
[lib]
@@ -21,9 +21,9 @@ path = "src/wasm_lib.rs"
2121
crate-type = ["staticlib"]
2222

2323
[dependencies]
24-
duckdb = { version = "1.2.0", features = ["vtab-loadable"] }
25-
duckdb-loadable-macros = "0.1.4"
26-
libduckdb-sys = { version = "1.2.0", features = ["loadable-extension"] }
24+
duckdb = { version = "1.2.2", features = ["vtab-loadable"] }
25+
duckdb-loadable-macros = "0.1.5"
26+
libduckdb-sys = { version = "1.2.2", features = ["loadable-extension"] }
2727
pcap-parser = "0.16.0"
2828
hex = "0.4"
2929
ehttp = "0.5.0"

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ USE_UNSTABLE_C_API=1
88

99
# TODO: these values are currently duplicated in lib.rs. There's a PR open in duckdb-rs that fixes this
1010
EXTENSION_NAME=pcap_reader
11-
MINIMUM_DUCKDB_VERSION=v1.2.0
12-
TARGET_DUCKDB_VERSION=v1.2.0
13-
DUCKDB_EXTENSION_MIN_DUCKDB_VERSION=v1.2.0
11+
MINIMUM_DUCKDB_VERSION=v1.2.2
12+
TARGET_DUCKDB_VERSION=v1.2.2
13+
DUCKDB_EXTENSION_MIN_DUCKDB_VERSION=v1.2.2
1414

1515
all: configure debug
1616

0 commit comments

Comments
 (0)