Skip to content

Commit ca2706d

Browse files
committed
Bump version to 0.49.0.
1 parent 369c7bb commit ca2706d

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7-
## Unreleased
7+
## [0.49.0] - Oct 4, 2021
88

99
### New features
1010

@@ -13,6 +13,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1313
weights attached to data values. This may be preferable to generating
1414
incorrect results.
1515

16+
- Add queryIndex Java API (#1093)
17+
1618
### Bug fixes
1719

1820
- 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/).
2123

2224
- Upgrade to FlatBuffers v2.0.0. The previous version of FlatBuffers used in
2325
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)
2533

2634
## [0.48.2] - Sep 13, 2021
2735

package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: differential-datalog
2-
version: 0.48.2
2+
version: 0.49.0
33
github: "vmware/differential-datalog"
44
license: MIT
55
author: "Leonid Ryzhyk"

src/Language/DifferentialDatalog/Version.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import Data.List
3333

3434
-- Keep this in sync with the binary release version on github
3535
dDLOG_VERSION :: String
36-
dDLOG_VERSION = "v0.48.2"
36+
dDLOG_VERSION = "v0.49.0"
3737

3838
gitInfoCwdTry :: Either String GitInfo
3939
gitInfoCwdTry = $$tGitInfoCwdTry

0 commit comments

Comments
 (0)