From 7495583b3dc748623e8b7c4feacb24f3933f58e3 Mon Sep 17 00:00:00 2001 From: Greg Haskins Date: Sat, 8 Apr 2023 16:50:34 -0400 Subject: [PATCH] Release v2.6.1 Changes since v2.6.0 -------------------- b3ee264 Update dependencies 51abd0a grpc-client (jetty): Fix NPE in onIdleTimeout Session.Listener Signed-off-by: Greg Haskins --- modules/core/project.clj | 2 +- modules/grpc-client/project.clj | 2 +- modules/grpc-server/project.clj | 2 +- modules/io/project.clj | 2 +- project.clj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/core/project.clj b/modules/core/project.clj index d34447a..6fe6365 100644 --- a/modules/core/project.clj +++ b/modules/core/project.clj @@ -1,4 +1,4 @@ -(defproject io.github.protojure/core "2.6.1-SNAPSHOT" +(defproject io.github.protojure/core "2.6.1" :description "Core protobuf and GRPC utilities for protojure" :url "http://github.com/protojure/lib" :license {:name "Apache License 2.0" diff --git a/modules/grpc-client/project.clj b/modules/grpc-client/project.clj index a7186ea..1911821 100644 --- a/modules/grpc-client/project.clj +++ b/modules/grpc-client/project.clj @@ -1,4 +1,4 @@ -(defproject io.github.protojure/grpc-client "2.6.1-SNAPSHOT" +(defproject io.github.protojure/grpc-client "2.6.1" :description "GRPC client library for protoc-gen-clojure" :url "http://github.com/protojure/lib" :license {:name "Apache License 2.0" diff --git a/modules/grpc-server/project.clj b/modules/grpc-server/project.clj index b676658..aa71398 100644 --- a/modules/grpc-server/project.clj +++ b/modules/grpc-server/project.clj @@ -1,4 +1,4 @@ -(defproject io.github.protojure/grpc-server "2.6.1-SNAPSHOT" +(defproject io.github.protojure/grpc-server "2.6.1" :description "GRPC server library for protoc-gen-clojure" :url "http://github.com/protojure/lib" :license {:name "Apache License 2.0" diff --git a/modules/io/project.clj b/modules/io/project.clj index b3d10b2..fb11f9c 100644 --- a/modules/io/project.clj +++ b/modules/io/project.clj @@ -1,4 +1,4 @@ -(defproject io.github.protojure/io "2.6.1-SNAPSHOT" +(defproject io.github.protojure/io "2.6.1" :description "IO library to support io.github.protojure/core" :url "http://github.com/protojure/lib" :license {:name "Apache License 2.0" diff --git a/project.clj b/project.clj index d7a4d7a..37d92cf 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(def protojure-version "2.6.1-SNAPSHOT") +(def protojure-version "2.6.1") (defproject io.github.protojure/lib-suite "0.0.1" :description "Support libraries for protoc-gen-clojure, providing native Clojure support for Google Protocol Buffers and GRPC applications"