Skip to content

Commit

Permalink
Merge pull request #73 from carlopi/main
Browse files Browse the repository at this point in the history
Move to duckdb v0.10.3
  • Loading branch information
samansmink authored May 23, 2024
2 parents 27e2b4c + 883e04a commit a86093f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
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

0 comments on commit a86093f

Please sign in to comment.