Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v0.17.0 (2025-09-??)

* Add support for unix socket connection. ([#115](https://github.com/crystal-lang/crystal-mysql/pull/115), thanks @bcardiff)
* Add ssl support. ([#117](https://github.com/crystal-lang/crystal-mysql/pull/117), thanks @bcardiff)
* Update to crystal-db ~> 0.14.0. ([#118](https://github.com/crystal-lang/crystal-mysql/pull/118), thanks @bcardiff)
* CI and spec maintenance ([#114](https://github.com/crystal-lang/crystal-mysql/pull/114), thanks @bcardiff)
* Update formatting ([#116](https://github.com/crystal-lang/crystal-mysql/pull/116), thanks @straight-shoota)

## v0.16.0 (2023-12-21)

* Update to crystal-db ~> 0.13.1. ([#112](https://github.com/crystal-lang/crystal-mysql/pull/112))
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mysql
version: 0.16.0
version: 0.17.0

dependencies:
db:
Expand Down
2 changes: 1 addition & 1 deletion src/mysql/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module MySql
VERSION = "0.16.0"
VERSION = "0.17.0"
end