Skip to content

Commit

Permalink
refs #4291 fixed a bug reporting stream-handling errors in the RestHa…
Browse files Browse the repository at this point in the history
…ndler module (#4292)
  • Loading branch information
davidnich committed Jul 17, 2021
1 parent b9b3adc commit a90304f
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 49 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8.12)
# NOTE: Qore should always use semantic versioning: https://semver.org/
set(VERSION_MAJOR 1)
set(VERSION_MINOR 0)
set(VERSION_SUB 1)
set(VERSION_SUB 2)
#set(VERSION_PATCH 0)

# support <pkg>_ROOT in find_package
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@

# AC_PREREQ(2.59)
# NOTE: Qore should always use semantic versioning: https://semver.org/
AC_INIT([qore], [1.0.1],
AC_INIT([qore], [1.0.2],
[David Nichols <david@qore.org>],
[qore])
AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar subdir-objects])
Expand Down
10 changes: 10 additions & 0 deletions doxygen/lang/900_release_notes.dox.tmpl
Expand Up @@ -2,6 +2,16 @@

@tableofcontents

@section qore_1_0_2 Qore 1.0.2

@par Release Summary
Bugfix release; see below for more information

@subsection qore_1_0_2_bug_fixes Bug Fixes in Qore
- <a href="../../modules/RestHandler/html/index.html">RestHandler</a> module
- fixed a bug handling errors registering stream errors with a stream handler
(<a href="https://github.com/qorelanguage/qore/issues/4291">issue 4291</a>)

@section qore_1_0_1 Qore 1.0.1

@par Release Summary
Expand Down
1 change: 1 addition & 0 deletions lib/QC_Socket.qpp
Expand Up @@ -35,6 +35,7 @@
#include "qore/intern/QC_Socket.h"
#include "qore/intern/ssl_constants.h"
#include "qore/intern/QC_Queue.h"
#include "qore/intern/qore_socket_private.h"
#include "qore/QoreSSLCertificate.h"
#include "qore/QoreSSLPrivateKey.h"

Expand Down
150 changes: 106 additions & 44 deletions qlib/RestHandler.qm

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion qore.spec-fedora
Expand Up @@ -2,7 +2,7 @@
%global user_module_dir %{_datadir}/qore-modules/

Name: qore
Version: 1.0.1
Version: 1.0.2
Release: 1%{?dist}
Summary: Multithreaded Programming Language

Expand Down Expand Up @@ -173,6 +173,9 @@ make check
%{_mandir}/man1/qore.1.*

%changelog
* Sat Jul 17 2021 David Nichols <david@qore.org> 1.0.2-1
- updated version to 1.0.2-1

* Thu Jul 1 2021 David Nichols <david@qore.org> 1.0.1-1
- updated version to 1.0.1-1
- updated libqore version to 7.0.1
Expand Down
5 changes: 4 additions & 1 deletion qore.spec-multi
Expand Up @@ -31,7 +31,7 @@

Summary: Multithreaded Programming Language
Name: qore
Version: 1.0.1
Version: 1.0.2
Release: 1%{dist}
%if 0%{?suse_version}
License: LGPL-2.0+ or GPL-2.0+ or MIT
Expand Down Expand Up @@ -276,6 +276,9 @@ rm -rf $RPM_BUILD_ROOT
%endif

%changelog
* Sat Jul 17 2021 David Nichols <david@qore.org> 1.0.2
- updated version to 1.0.2

* Thu Jul 1 2021 David Nichols <david@qore.org> 1.0.1
- updated version to 1.0.1
- updated libqore version to 7.0.1
Expand Down
2 changes: 1 addition & 1 deletion qore.spec-opensuse
Expand Up @@ -19,7 +19,7 @@

%define module_dir %{_libdir}/qore-modules
Name: qore
Version: 1.0.1
Version: 1.0.2
Release: 0
Summary: Multithreaded Programming Language
License: LGPL-2.1+ or GPL-2.0+ or MIT
Expand Down

0 comments on commit a90304f

Please sign in to comment.