Skip to content

Commit

Permalink
Updated for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Paula Gearon committed Aug 19, 2020
1 parent 21d668a commit e8e5d4c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
# Change Log

## [Unreleased]

## [1.1.1] - 2020-08-19
### Added
- User planning can now be selected with query options. Add `:planner :user` to the end of the query arguments.
- `optional` operator, as per the [SPARQL OPTIONAL](https://www.w3.org/TR/sparql11-query/#optionals) operation.
- Added `show-plan` function to observe how a query will be performed.

### Changed
- Selecting variables as transitive attributes returns a path vector for that column.

### Fixed
- Fixed issue with filter arguments sometimes failing.
- Transitive querying. Now handles unbound path elements better, planning is improved, and zero-steps are properly handled.
- Tuple selector in the `:find` clause now work for single elements, and with empty results.
- Single graph element in the `:in` clause now works.


## 1.1.0 - 2020-08-05
Expand All @@ -18,6 +32,7 @@
### Fixed
- Entity arrays are now returned as vectors and not lists.


## 1.0.0 - 2020-07-29
### Added
- New Datomic-style API
Expand All @@ -28,5 +43,5 @@
### Added
- Introduced Update Annotations

[Unreleased]: https://github.com/threatgrid/asami/compare/1.1.0...HEAD
[1.1.0]: https://github.com/threatgrid/asami/compare/0.4.10...1.1.0
[Unreleased]: https://github.com/threatgrid/asami/compare/1.1.1...HEAD
[1.1.1]: https://github.com/threatgrid/asami/compare/1.1.0...1.1.1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Asami can be made available to clojure by adding the following to a `deps.edn` f
```clojure
{
:deps {
org.clojars.quoll/asami {:mvn/version "1.1.0"}
org.clojars.quoll/asami {:mvn/version "1.1.1"}
}
}
```
Expand All @@ -37,7 +37,7 @@ This makes Asami available to a repl that is launched with the `clj` or `clojure

Alternatively, Asami can be added for the Leiningen build tool by adding this to the `:dependencies` section of the `project.clj` file:
```clojure
[org.clojars.quoll/asami "1.1.0"]
[org.clojars.quoll/asami "1.1.1"]
```

### Running
Expand Down

0 comments on commit e8e5d4c

Please sign in to comment.