Skip to content

Commit 744939a

Browse files
committed
Version 1.7.4
1 parent 53533a2 commit 744939a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WIP
1+
# 1.7.4 - Jan 5, 2025
22

33
- Patch es6 iterators not having Symbol.iterator function #479 #249 via @kasbah
44
- Fixed not-join not working properly with empty relations #481

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ The intention with DataScript is to be a basic building block in client-side app
1919

2020
```clj
2121
;; lein
22-
[datascript "1.7.3"]
22+
[datascript "1.7.4"]
2323
```
2424
```clj
2525
;; deps.edn
26-
datascript/datascript {:mvn/version "1.7.3"}
26+
datascript/datascript {:mvn/version "1.7.4"}
2727
```
2828

2929
Important! If you are using shadow-cljs, add
@@ -184,7 +184,7 @@ For more examples, see [our acceptance test suite](test/datascript/test/).
184184
DataScript can be used from any JS engine without additional dependencies:
185185

186186
```html
187-
<script src="https://github.com/tonsky/datascript/releases/download/1.7.3/datascript-1.7.3.min.js"></script>
187+
<script src="https://github.com/tonsky/datascript/releases/download/1.7.4/datascript-1.7.4.min.js"></script>
188188
```
189189

190190
or as a CommonJS module ([npm page](https://www.npmjs.org/package/datascript)):

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def version "1.7.3")
1+
(def version "1.7.4")
22

33
(defproject datascript (str version (System/getenv "DATASCRIPT_CLASSIFIER"))
44
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"

release-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datascript",
3-
"version": "1.7.3",
3+
"version": "1.7.4",
44
"description": "Immutable in-memory triplestore with Datalog queries",
55
"homepage": "https://github.com/tonsky/datascript",
66
"author": "Nikita Prokopov (https://github.com/tonsky)",

release-js/wrapper.prefix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Datascript v1.7.3
2+
* Datascript v1.7.4
33
*
44
* Copyright 2014-2021 Nikita Prokopov
55
*

0 commit comments

Comments
 (0)