Skip to content

Commit

Permalink
Merge pull request #2305 from zephir-lang/development
Browse files Browse the repository at this point in the history
0.15.0
  • Loading branch information
Jeckerson authored Oct 5, 2021
2 parents a7d7a61 + 64b966b commit d56e764
Show file tree
Hide file tree
Showing 163 changed files with 2,675 additions and 2,632 deletions.
40 changes: 0 additions & 40 deletions .ci/after-failure.sh

This file was deleted.

27 changes: 27 additions & 0 deletions .ci/release-notes.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/usr/bin/env bash

# This file is part of the Zephir.
#
# (c) Zephir Team <[email protected]>
#
# For the full copyright and license information, please view
# the LICENSE file that was distributed with this source code.

# shellcheck disable=SC2002

# -e Exit immediately if a command exits with a non-zero status.
# -u Treat unset variables as an error when substituting.

set -eu
set -o pipefail

# Get Release notes for the latest release from CHANGELOG.md
# How to use:
# release-notes.sh CHANGELOG.md > ReleaseNotes.md


startline=$(cat "$1" | grep -nE '^### ' | head -n 1 | cut -d ":" -f 1)
finishline=$(($(cat "$1" | grep -nE '^## \[[0-9]+' | head -n 2 | tail -n 1 | cut -d ":" -f 1) - 1))
changelog=$(sed -n "${startline},${finishline}p" "$1");

echo "${changelog}"
23 changes: 0 additions & 23 deletions .ci/run-tests.sh

This file was deleted.

41 changes: 0 additions & 41 deletions .ci/vsenv.bat

This file was deleted.

Loading

0 comments on commit d56e764

Please sign in to comment.