Skip to content

Commit

Permalink
Merge branch 'development' into #2255-php8.1
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/build-unix.yml
  • Loading branch information
Jeckerson committed Oct 1, 2021
2 parents 7db94ed + 67213d6 commit 308092f
Show file tree
Hide file tree
Showing 112 changed files with 1,260 additions and 1,273 deletions.
40 changes: 0 additions & 40 deletions .ci/after-failure.sh

This file was deleted.

37 changes: 0 additions & 37 deletions .ci/install-zephir-parser.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 <team@zephir-lang.com>
#
# 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 308092f

Please sign in to comment.