Skip to content

Commit ad2aeea

Browse files
VGSMLclaude
andcommitted
chore: Bump version to 0.1.15
Update description.yml with new features: - ANSI-compliant connections for DDL commands - COPY TO for bulk data transfer via BCP protocol - CREATE TABLE AS SELECT (CTAS) support Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 58c1295 commit ad2aeea

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set(EXTENSION_NAME ${TARGET_NAME}_extension)
66
set(LOADABLE_EXTENSION_NAME ${TARGET_NAME}_loadable_extension)
77

88
# Extension version - update this when creating a new release tag
9-
set(MSSQL_EXTENSION_VERSION "0.1.14")
9+
set(MSSQL_EXTENSION_VERSION "0.1.15")
1010

1111
# Project configuration
1212
project(${TARGET_NAME})

description.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extension:
22
name: mssql
33
description: "Connect DuckDB to Microsoft SQL Server via native TDS (including TLS)."
4-
version: "0.1.7"
4+
version: "0.1.15"
55
language: "C++"
66
build: "cmake"
77
licence: "MIT"
@@ -17,7 +17,7 @@ extension:
1717

1818
repo:
1919
github: "hugr-lab/mssql-extension"
20-
ref: "v0.1.7"
20+
ref: "v0.1.15"
2121

2222
docs:
2323
hello_world: |
@@ -40,3 +40,6 @@ docs:
4040
- UPDATE and DELETE support (requires primary key)
4141
- Connection pooling with configurable limits
4242
- DuckDB secret management for credentials
43+
- ANSI-compliant connections for DDL commands
44+
- COPY TO for bulk data transfer via BCP protocol
45+
- CREATE TABLE AS SELECT (CTAS) support

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mssql-extension",
3-
"version": "0.1.14",
3+
"version": "0.1.15",
44
"description": "DuckDB extension for Microsoft SQL Server using native TDS protocol",
55
"dependencies": [
66
"openssl"

0 commit comments

Comments
 (0)