From ca2706d8712bf6b80827833857a79a1e0720a113 Mon Sep 17 00:00:00 2001 From: Leonid Ryzhyk Date: Mon, 4 Oct 2021 16:17:12 -0700 Subject: [PATCH] Bump version to 0.49.0. --- CHANGELOG.md | 12 ++++++++++-- package.yaml | 2 +- src/Language/DifferentialDatalog/Version.hs | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7e1305f0..468f4b805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## Unreleased +## [0.49.0] - Oct 4, 2021 ### New features @@ -13,6 +13,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). weights attached to data values. This may be preferable to generating incorrect results. +- Add queryIndex Java API (#1093) + ### Bug fixes - Closures that depend on generic types generate invalid Rust (#1072). @@ -21,7 +23,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Upgrade to FlatBuffers v2.0.0. The previous version of FlatBuffers used in DDlog is not compatible with recent OS X releases. - + +### SQL-to-DDlog compiler + +- Add support for identity views for input tables in DDlogJooqProvider (#1094) +- Translate vector-type fields properly in DDlogJooqProvider (#1089) +- Expose DDlogJooqProvider DSLContext (#1086) +- Windows and Joins work when columns have alias (#1087) ## [0.48.2] - Sep 13, 2021 diff --git a/package.yaml b/package.yaml index 2d18dc1e9..b9d472ded 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: differential-datalog -version: 0.48.2 +version: 0.49.0 github: "vmware/differential-datalog" license: MIT author: "Leonid Ryzhyk" diff --git a/src/Language/DifferentialDatalog/Version.hs b/src/Language/DifferentialDatalog/Version.hs index 3a9e76292..54710203e 100644 --- a/src/Language/DifferentialDatalog/Version.hs +++ b/src/Language/DifferentialDatalog/Version.hs @@ -33,7 +33,7 @@ import Data.List -- Keep this in sync with the binary release version on github dDLOG_VERSION :: String -dDLOG_VERSION = "v0.48.2" +dDLOG_VERSION = "v0.49.0" gitInfoCwdTry :: Either String GitInfo gitInfoCwdTry = $$tGitInfoCwdTry