Skip to content

Commit

Permalink
Version 1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Jan 5, 2025
1 parent 53533a2 commit 744939a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WIP
# 1.7.4 - Jan 5, 2025

- Patch es6 iterators not having Symbol.iterator function #479 #249 via @kasbah
- Fixed not-join not working properly with empty relations #481
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ The intention with DataScript is to be a basic building block in client-side app

```clj
;; lein
[datascript "1.7.3"]
[datascript "1.7.4"]
```
```clj
;; deps.edn
datascript/datascript {:mvn/version "1.7.3"}
datascript/datascript {:mvn/version "1.7.4"}
```

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

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

or as a CommonJS module ([npm page](https://www.npmjs.org/package/datascript)):
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def version "1.7.3")
(def version "1.7.4")

(defproject datascript (str version (System/getenv "DATASCRIPT_CLASSIFIER"))
:description "An implementation of Datomic in-memory database and Datalog query engine in ClojureScript"
Expand Down
2 changes: 1 addition & 1 deletion release-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datascript",
"version": "1.7.3",
"version": "1.7.4",
"description": "Immutable in-memory triplestore with Datalog queries",
"homepage": "https://github.com/tonsky/datascript",
"author": "Nikita Prokopov (https://github.com/tonsky)",
Expand Down
2 changes: 1 addition & 1 deletion release-js/wrapper.prefix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Datascript v1.7.3
* Datascript v1.7.4
*
* Copyright 2014-2021 Nikita Prokopov
*
Expand Down

0 comments on commit 744939a

Please sign in to comment.