Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarroway committed Jun 29, 2024
1 parent 8c80539 commit 2632f31
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ jobs:
strategy:
matrix:
distribution: [ 'zulu' ]
java: [ '11', '17' ]
java: [ '11', '17', '21' ]

name: Java ${{ matrix.Java }} (${{ matrix.distribution }})

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Prepare java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@9.5
uses: DeLaGuardo/setup-clojure@12.5
with:
lein: 2.9.10

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

[![Clojars Project](https://img.shields.io/clojars/v/hato.svg)](https://clojars.org/hato)

[![Clojure CI](https://github.com/gnarroway/hato/actions/workflows/build-and-publish.yml/badge.svg)](https://github.com/gnarroway/hato/actions/workflows/build-and-publish.yml)

An HTTP client for Clojure, wrapping JDK 11's [HttpClient](https://openjdk.java.net/groups/net/httpclient/intro.html).

It supports both HTTP/1.1 and HTTP/2, with synchronous and asynchronous execution modes as well as websockets.
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

(defproject hato "1.0.0"
(defproject hato "1.1.0-SNAPSHOT"
:description "An HTTP client for Clojure, wrapping JDK 11's HttpClient."
:url "https://github.com/gnarroway/hato"
:license {:name "The MIT License"
Expand Down

0 comments on commit 2632f31

Please sign in to comment.