From 253f9132616eb6cb74bfd3e2588cc1fbab97cc7e Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 21 Aug 2024 10:41:04 +1000 Subject: [PATCH] Version bump (#58) --- .github/workflows/ci.yml | 2 +- CHANGELOG | 5 +++++ lib/mini_sql/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83e7c31..e96e9e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.1", "3.0", "2.7"] + ruby: ["3.1", "3.2", "3.3"] experimental: [false] include: - ruby: ruby-head diff --git a/CHANGELOG b/CHANGELOG index b1b363f..74ebc48 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +2024-08-21 - 1.6.0 + +- FEATURE: optionaly allow encoding pg arrays efficiently +- FEATURE: decoder for pgvector + 2023-08-16 - 1.5.0 - FEATURE: add to_sql for easy conversion of builder to sql diff --git a/lib/mini_sql/version.rb b/lib/mini_sql/version.rb index 54af5b7..ccb99ff 100644 --- a/lib/mini_sql/version.rb +++ b/lib/mini_sql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module MiniSql - VERSION = "1.5.0" + VERSION = "1.6.0" end