Bump the version to 0.8.0

This commit is contained in:
Harendra Kumar 2021-06-22 13:35:52 +05:30
parent 06acb1906b
commit 4f629b8cb3
8 changed files with 1382 additions and 1298 deletions

View File

@ -2,7 +2,7 @@
<!-- See rendered changelog at https://streamly.composewell.com -->
## Unreleased
## 0.8.0
See [API Changelog](docs/API-changelog.txt) for a complete list of signature
changes and new APIs introduced.

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
GHC_VERSION=8.8.3
STREAMLY_VERSION=0.7.2
GHC_VERSION=8.10.4
STREAMLY_VERSION=0.8.0
case `uname` in
Darwin) SYSTEM=x86_64-osx;;

View File

@ -1,5 +1,7 @@
#!/usr/bin/env bash
STREAMLY_VERSION=0.8.0
#------------------------------------------------------------------------------
# Script
#------------------------------------------------------------------------------
@ -129,7 +131,7 @@ target_exe_extra_args () {
if test "$COVERAGE" -eq "1"
then
# Used to determine the hpc tix dir
PACKAGE_FULL_NAME=streamly-0.7.2
PACKAGE_FULL_NAME=streamly-$STREAMLY_VERSION
case `uname` in
Linux) SYSTEM=x86_64-linux ;;
*) echo "Unsupported system"; exit 1 ;;
@ -161,7 +163,7 @@ fi
# Run coverage reports
#-----------------------------------------------------------------------------
PACKAGE_NAME=streamly-0.7.2
PACKAGE_NAME=streamly-$STREAMLY_VERSION
MIX_DIR=$BUILD_DIR/build/$SYSTEM/ghc-${GHC_VERSION}/$PACKAGE_NAME/hpc/vanilla/mix/$PACKAGE_NAME/
ALLTIX=$BUILD_DIR/hpc/all.tix

2654
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
# See https://www.gnu.org/software/autoconf/manual/autoconf.html for help on
# the macros used in this file.
AC_INIT([streamly], [0.7.2], [streamly@composewell.com], [streamly])
AC_INIT([streamly], [0.8.0], [streamly@composewell.com], [streamly], [https://streamly.composewell.com])
# To suppress "WARNING: unrecognized options: --with-compiler"
AC_ARG_WITH([compiler], [GHC])

View File

@ -4,21 +4,22 @@ please see https://github.com/composewell/streamly/issues.
Use `git shortlog -sn tag1...tag2` on the git repository to get a list of
contributors between two repository tags.
## HEAD
## 0.8.0
* Harendra Kumar
* Adithya Kumar
* Pranay Sashank
* Ranjeet Kumar Ranjan
* Anurag Hooda
* Ahmed Zaheer Dadarkar
* Ranjeet Ranjan
* Shruti Umat
* Joseph Koshy (Google LLC.)
* Sanchayan Maity
* Kirill Elagin
* Shlok Datye
* Julian Ospald
* George Thomas
* endgame
* Google LLC.
## 0.7.3

View File

@ -3,7 +3,7 @@ currently shipped with the package. To find parts of the code where the
original or modified code has been included please search for the copyright
notices in the individual files.
## Unreleased
## 0.8.0
* macOS FS Event handling C code adapted from hfsevents package:
* Copyright (c) 2012, Luite Stegeman

View File

@ -1,6 +1,6 @@
cabal-version: 2.2
name: streamly
version: 0.7.2
version: 0.8.0
synopsis: Dataflow programming and declarative concurrency
description:
Browse the documentation at https://streamly.composewell.com.
@ -36,6 +36,7 @@ tested-with: GHC==8.0.2
, GHC==8.6.5
, GHC==8.8.4
, GHC==8.10.4
, GHC==9.0.1
author: Composewell Technologies
maintainer: streamly@composewell.com
copyright: 2017 Composewell Technologies