Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Oct 22, 2020
1 parent 14a06a1 commit 78735bb
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 4 deletions.
25 changes: 25 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
2020-10-22 Jerry Lundström

Release 0.1.1

This release adds a few assert check on augments to some of the function
calls, fixes a type in configure and adds coverage tests.

- `tinyframe_write_control()`:
- assert arguments and content fields data
- check for valid content field types
- `tinyframe_write_control_start()`: assert arguments
- `tinyframe_write_frame()`: assert arguments
- `tinyframe_write_control_stop()`: assert arguments
- `tinyframe_set_header()`: assert arguments
- Remove `sprintf()` usage from tracing

c6fbfea Travis, configure
ba616b0 Coverage
97dfeb7 Coverage
f69665b Badges
907a894 COPR
f07d4e8 Funding
242b1b2 Trace
8d36cf7 LGTM

2020-03-19 Jerry Lundström

First release v0.1.0
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
AC_PREREQ(2.61)
AC_INIT([tinyframe], [0.1.0], [[email protected]], [tinyframe], [https://github.com/DNS-OARC/tinyframe/issues])
AC_INIT([tinyframe], [0.1.1], [[email protected]], [tinyframe], [https://github.com/DNS-OARC/tinyframe/issues])
AC_SUBST([TINYFRAME_VERSION_MAJOR], [0000])
AC_SUBST([TINYFRAME_VERSION_MINOR], [0001])
AC_SUBST([TINYFRAME_VERSION_PATCH], [0000])
AC_SUBST([TINYFRAME_LIBRARY_VERSION], [0:0:0])
AC_SUBST([TINYFRAME_VERSION_PATCH], [0001])
AC_SUBST([TINYFRAME_LIBRARY_VERSION], [0:1:0])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_CONFIG_SRCDIR([src/tinyframe.c])
AC_CONFIG_HEADER([src/config.h])
Expand Down
27 changes: 27 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
tinyframe (0.1.1-1~unstable+1) unstable; urgency=low

* Release 0.1.1

This release adds a few assert check on augments to some of the function
calls, fixes a type in configure and adds coverage tests.

- `tinyframe_write_control()`:
- assert arguments and content fields data
- check for valid content field types
- `tinyframe_write_control_start()`: assert arguments
- `tinyframe_write_frame()`: assert arguments
- `tinyframe_write_control_stop()`: assert arguments
- `tinyframe_set_header()`: assert arguments
- Remove `sprintf()` usage from tracing

c6fbfea Travis, configure
ba616b0 Coverage
97dfeb7 Coverage
f69665b Badges
907a894 COPR
f07d4e8 Funding
242b1b2 Trace
8d36cf7 LGTM

-- Jerry Lundström <[email protected]> Thu, 22 Oct 2020 14:11:31 +0200

tinyframe (0.1.0-1~unstable+1) unstable; urgency=low

* Release 0.1.0
Expand Down
23 changes: 22 additions & 1 deletion rpm/tinyframe.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%define sover 0
%define libname libtinyframe%{sover}
Name: tinyframe
Version: 0.1.0
Version: 0.1.1
Release: 1%{?dist}
Summary: Frame Streams encoder/decoder library
Group: Development/Libraries/C and C++
Expand Down Expand Up @@ -80,5 +80,26 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Thu Oct 22 2020 Jerry Lundström <[email protected]> 0.1.1-1
- Release 0.1.1
* This release adds a few assert check on augments to some of the function
calls, fixes a type in configure and adds coverage tests.
- `tinyframe_write_control()`:
- assert arguments and content fields data
- check for valid content field types
- `tinyframe_write_control_start()`: assert arguments
- `tinyframe_write_frame()`: assert arguments
- `tinyframe_write_control_stop()`: assert arguments
- `tinyframe_set_header()`: assert arguments
- Remove `sprintf()` usage from tracing
* Commits:
c6fbfea Travis, configure
ba616b0 Coverage
97dfeb7 Coverage
f69665b Badges
907a894 COPR
f07d4e8 Funding
242b1b2 Trace
8d36cf7 LGTM
* Thu Mar 19 2020 Jerry Lundström <[email protected]> 0.1.0-1
- Release 0.1.0

0 comments on commit 78735bb

Please sign in to comment.