Skip to content

Commit b4e31d2

Browse files
committed
Bring README + pom up to parity with the new clojars release
1 parent 747ffde commit b4e31d2

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.3.104
2+
- Update docs to add syntax for setting multiple [k, v] pairs `ON CONFLICT`
3+
- Add support for `CREATE / DROP EXTENSION`
4+
- Add support for `DISTINCT ON`
5+
- Include `honeysql-posgres.format` directly into `honeysql-postgres.helpers` to avoid leaking the `require` to the consumer
6+
- Stop using lein and shift to deps exclusively
7+
- Add CI and release/publish workflow
8+
- Add support for testing all examples in the README as part of CI
9+
110
## 0.2.6
211
- Add ILIKE, NOT ILIKE
312
- ADD EXCEPT and EXCEPT ALL

README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# honeysql-postgres [![Actions Status](https://github.com/nilenso/honeysql-postgres/workflows/CI/badge.svg)](https://github.com/nilenso/honeysql-postgres/actions) [![Clojars Project](https://img.shields.io/clojars/v/nilenso/honeysql-postgres.svg)](https://clojars.org/nilenso/honeysql-postgres) [![NPM Version](https://img.shields.io/npm/v/@honeysql/honeysql-postgres.svg)](https://www.npmjs.org/package/@honeysql/honeysql-postgres) [![cljdoc badge](https://cljdoc.org/badge/nilenso/honeysql-postgres)](https://cljdoc.org/d/nilenso/honeysql-postgres/CURRENT)
1+
# honeysql-postgres [![Actions Status](https://github.com/nilenso/honeysql-postgres/workflows/CI/badge.svg)](https://github.com/nilenso/honeysql-postgres/actions) [![Clojars Project](https://img.shields.io/clojars/v/nilenso/honeysql-postgres.svg)](https://clojars.org/nilenso/honeysql-postgres) [![cljdoc badge](https://cljdoc.org/badge/nilenso/honeysql-postgres)](https://cljdoc.org/d/nilenso/honeysql-postgres/CURRENT)
22

33
PostgreSQL extensions for the widely used [honeysql](https://github.com/jkk/honeysql).
44

55
This library aims to extend the features of honeysql to support postgres specific SQL clauses and some basic SQL DDL in addition to the ones supported by the parent library. This keeps honeysql clean and single-purpose, any vendor-specific additions can simply be separate libraries that work on top.
66

7-
87
## Index
98

109
- [Usage](#usage)
@@ -27,18 +26,6 @@ This library aims to extend the features of honeysql to support postgres specifi
2726

2827
## Usage
2928

30-
### Leiningen
31-
```clj
32-
[nilenso/honeysql-postgres "0.2.6"]
33-
```
34-
### Maven
35-
```xml
36-
<dependency>
37-
<groupId>nilenso</groupId>
38-
<artifactId>honeysql-postgres</artifactId>
39-
<version>0.2.6</version>
40-
</dependency>
41-
```
4229
### REPL
4330
```clojure
4431
(require '[honeysql.core :as sql]

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<packaging>jar</packaging>
5-
<groupId>honeysql-postgres</groupId>
5+
<groupId>nilenso</groupId>
66
<artifactId>honeysql-postgres</artifactId>
77
<version>0.3.104</version>
88
<name>honeysql-postgres</name>

0 commit comments

Comments
 (0)