1.2.3 release

This commit is contained in:
Jason Rhinelander 2021-01-14 15:49:41 -04:00
parent 8de63f3e84
commit cec5a588b5
2 changed files with 34 additions and 8 deletions

15
debian/changelog vendored
View file

@ -1,3 +1,18 @@
oxenmq (1.2.3-1~ubuntu2004) focal; urgency=medium
* Refresh .so versioning patch
* fix lib version
* Make lokimq::is_hex check for size being a multiple of 2
* Fix decoding into a std::byte
* Rename LokiMQ to OxenMQ
* Add lokimq compatibility headers
* Export compile commands and use ccache by default
* Remove deprecated string_view compat shim
* Rediff patches
* Rename package in control file
-- Jason Rhinelander <jason@imaginary.ca> Thu, 14 Jan 2021 15:49:35 -0400
lokimq (1.2.2-1~ubuntu2004) focal; urgency=medium
* Crank clang to 11

27
debian/control vendored
View file

@ -1,4 +1,4 @@
Source: lokimq
Source: oxenmq
Priority: optional
Maintainer: Jason Rhinelander <jason@imaginary.ca>
Build-Depends: debhelper-compat (= 11), cmake (>= 3.5), g++, pkg-config, libzmq3-dev (>= 4.3), libsodium-dev
@ -6,23 +6,23 @@ Standards-Version: 4.4.1
Section: libs
Homepage: https://github.com/loki-project/loki-mq
Package: liblokimq-dev
Package: liboxenmq-dev
Section: libdevel
Architecture: any
Depends: liblokimq1.2.2 (= ${binary:Version}), ${misc:Depends}, libzmq3-dev (>= 4.3)
Depends: liboxenmq1.2.3 (= ${binary:Version}), ${misc:Depends}, libzmq3-dev (>= 4.3)
Description: zeromq-based Loki message passing library (headers)
This C++17 library contains an abstraction layer around ZeroMQ to support
integration with Loki authentication, RPC, and message passing. It is
designed to be usable as the underlying communication mechanism of SN-to-SN
communication ("quorumnet"), the RPC interface used by wallets and local
daemon commands, communication channels between lokid and auxiliary services
daemon commands, communication channels between oxend and auxiliary services
(storage server, lokinet), and also provides a local multithreaded job
scheduling within a process.
.
This package contains the library headers and other development files needed
to build software using lokimq.
to build software using oxenmq.
Package: liblokimq1.2.2
Package: liboxenmq1.2.3
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: zeromq-based Loki message passing library
@ -30,8 +30,19 @@ Description: zeromq-based Loki message passing library
integration with Loki authentication, RPC, and message passing. It is
designed to be usable as the underlying communication mechanism of SN-to-SN
communication ("quorumnet"), the RPC interface used by wallets and local
daemon commands, communication channels between lokid and auxiliary services
daemon commands, communication channels between oxend and auxiliary services
(storage server, lokinet), and also provides a local multithreaded job
scheduling within a process.
.
This package contains the library file needed by software built using lokimq.
This package contains the library file needed by software built using oxenmq.
Package: liblokimq-dev
Section: libdevel
Architecture: any
Depends: liboxenmq-dev, ${misc:Depends}
Description: transitional package
This is a transitional package that contains compatibility headers and
pkg-config data for applications still relying on the old lokimq API
namespace and package name.
.
It can be safely removed.