Skip to content

Commit 9019767

Browse files
authored
Merge pull request #2 from quackscience/1.2.1
v1.2.1 support
2 parents 330d6ec + 842266d commit 9019767

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/MainDistributionPipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ concurrency:
1414
jobs:
1515
duckdb-stable-build:
1616
name: Build extension binaries
17-
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].0
17+
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].1
1818
with:
19-
duckdb_version: v1.2.0
19+
duckdb_version: v1.2.1
2020
ci_tools_version: main
2121
extension_name: pyroscope
2222
extra_toolchains: rust;python3
23-
exclude_archs: 'windows_amd64_rtools;windows_amd64;wasm_threads;wasm_eh;wasm_mvp;linux_amd64_musl;'
23+
exclude_archs: 'windows_amd64_rtools;windows_amd64_mingw;windows_amd64;wasm_threads;wasm_eh;wasm_mvp;linux_amd64_musl;'

Cargo.toml

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

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

2222
[dependencies]
23-
duckdb = { version = "1.2.0", features = ["vtab-loadable"] }
24-
duckdb-loadable-macros = "0.1.4"
25-
libduckdb-sys = { version = "1.2.0", features = ["loadable-extension"] }
23+
duckdb = { version = "1.2.1", features = ["vtab-loadable"] }
24+
duckdb-loadable-macros = "0.1.5"
25+
libduckdb-sys = { version = "1.2.1", features = ["loadable-extension"] }
2626
lazy_static = "1.4"
2727
pyroscope = "0.5.4"
2828
pyroscope_pprofrs = "0.2"

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ PROJ_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
77
USE_UNSTABLE_C_API=1
88

99
EXTENSION_NAME=pyroscope
10-
MINIMUM_DUCKDB_VERSION=v1.2.0
11-
TARGET_DUCKDB_VERSION=v1.2.0
12-
DUCKDB_EXTENSION_MIN_DUCKDB_VERSION=v1.2.0
10+
MINIMUM_DUCKDB_VERSION=v1.2.1
11+
TARGET_DUCKDB_VERSION=v1.2.1
12+
DUCKDB_EXTENSION_MIN_DUCKDB_VERSION=v1.2.1
1313

1414
all: configure debug
1515

0 commit comments

Comments
 (0)