Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to duckdb v0.10.3 #72

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ concurrency:
jobs:
duckdb-stable-build:
name: Build extension binaries
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].2
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].3
with:
duckdb_version: v0.10.2
duckdb_version: v0.10.3
extension_name: quack

duckdb-stable-deploy:
Expand All @@ -25,6 +25,6 @@ jobs:
uses: ./.github/workflows/_extension_deploy.yml
secrets: inherit
with:
duckdb_version: v0.10.2
duckdb_version: v0.10.3
extension_name: quack
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 1433 files
1 change: 1 addition & 0 deletions src/include/quack_extension.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class QuackExtension : public Extension {
public:
void Load(DuckDB &db) override;
std::string Name() override;
std::string Version() const override;
};

} // namespace duckdb
8 changes: 8 additions & 0 deletions src/quack_extension.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ std::string QuackExtension::Name() {
return "quack";
}

std::string QuackExtension::Version() const {
#ifdef EXT_VERSION_QUACK
return EXT_VERSION_QUACK;
#else
return "";
#endif
}

} // namespace duckdb

extern "C" {
Expand Down
Loading