File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
src/Language/DifferentialDatalog Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
7
- ## Unreleased
7
+ ## [ 0.49.0 ] - Oct 4, 2021
8
8
9
9
### New features
10
10
@@ -13,6 +13,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
13
13
weights attached to data values. This may be preferable to generating
14
14
incorrect results.
15
15
16
+ - Add queryIndex Java API (#1093 )
17
+
16
18
### Bug fixes
17
19
18
20
- 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/).
21
23
22
24
- Upgrade to FlatBuffers v2.0.0. The previous version of FlatBuffers used in
23
25
DDlog is not compatible with recent OS X releases.
24
-
26
+
27
+ ### SQL-to-DDlog compiler
28
+
29
+ - Add support for identity views for input tables in DDlogJooqProvider (#1094 )
30
+ - Translate vector-type fields properly in DDlogJooqProvider (#1089 )
31
+ - Expose DDlogJooqProvider DSLContext (#1086 )
32
+ - Windows and Joins work when columns have alias (#1087 )
25
33
26
34
## [ 0.48.2] - Sep 13, 2021
27
35
Original file line number Diff line number Diff line change 1
1
name : differential-datalog
2
- version : 0.48.2
2
+ version : 0.49.0
3
3
github : " vmware/differential-datalog"
4
4
license : MIT
5
5
author : " Leonid Ryzhyk"
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ import Data.List
33
33
34
34
-- Keep this in sync with the binary release version on github
35
35
dDLOG_VERSION :: String
36
- dDLOG_VERSION = " v0.48.2 "
36
+ dDLOG_VERSION = " v0.49.0 "
37
37
38
38
gitInfoCwdTry :: Either String GitInfo
39
39
gitInfoCwdTry = $$ tGitInfoCwdTry
You can’t perform that action at this time.
0 commit comments