8
0
forked from pool/aws-c-common

Accepting request 727774 from home:glaubitz:branches:devel:libraries:c_c++

- Update to version 0.4.5
  + Move allocator functions to their own file
    * Move the allocator related functions to allocator.c
    * Add overrides for the allocator functions
    * PR Comments
- from version 0.4.4
  + Relaxed constraints on gcc+x86/x64 to gcc 4.1.2
    * Relaxed constraints on gcc+x86/x64 to gcc 4.1.2,
      added ARM and Itanium detection for gcc 4.4
- from version 0.4.3
  + Use CMake Threads module instead of manual pthreads linking
    * Depend on pthreads via Threads rather than manually
- from version 0.4.2
  + Fix error info
    * Fixed issue where the wrong info was returned for some error codes.
- from version 0.4.1
  + Logging refactor
    * Add yaml file for aws_byte_buf_cat proof (#448)
    * Proof harness for aws_byte_buf_cat with a fixed number of arguments
- from version 0.4.0
  + Task logging
    * Adds string tags to tasks and task logging for easier identification
- from version 0.3.15
  + Fix nasty overflow bug in high-res clock on 32-bit systems.
  + Fixed typo that broke osx build. (#425)
- Disable link-time optimization (LTO) as it currently breaks the testsuite
  + https://github.com/awslabs/aws-c-common/issues/456

OBS-URL: https://build.opensuse.org/request/show/727774
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-common?expand=0&rev=6
This commit is contained in:
2019-09-05 11:14:49 +00:00
committed by Git OBS Bridge
parent c3ce8dcb08
commit 14a13fc9a4
4 changed files with 37 additions and 5 deletions

View File

@@ -1,3 +1,34 @@
-------------------------------------------------------------------
Mon Sep 2 13:44:18 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.4.5
+ Move allocator functions to their own file
* Move the allocator related functions to allocator.c
* Add overrides for the allocator functions
* PR Comments
- from version 0.4.4
+ Relaxed constraints on gcc+x86/x64 to gcc 4.1.2
* Relaxed constraints on gcc+x86/x64 to gcc 4.1.2,
added ARM and Itanium detection for gcc 4.4
- from version 0.4.3
+ Use CMake Threads module instead of manual pthreads linking
* Depend on pthreads via Threads rather than manually
- from version 0.4.2
+ Fix error info
* Fixed issue where the wrong info was returned for some error codes.
- from version 0.4.1
+ Logging refactor
* Add yaml file for aws_byte_buf_cat proof (#448)
* Proof harness for aws_byte_buf_cat with a fixed number of arguments
- from version 0.4.0
+ Task logging
* Adds string tags to tasks and task logging for easier identification
- from version 0.3.15
+ Fix nasty overflow bug in high-res clock on 32-bit systems.
+ Fixed typo that broke osx build. (#425)
- Disable link-time optimization (LTO) as it currently breaks the testsuite
+ https://github.com/awslabs/aws-c-common/issues/456
-------------------------------------------------------------------
Tue Jun 18 09:39:29 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>