Skip to content

Commit d56e764

Browse files
authored
Merge pull request #2305 from zephir-lang/development
0.15.0
2 parents a7d7a61 + 64b966b commit d56e764

File tree

163 files changed

+2675
-2632
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+2675
-2632
lines changed

Diff for: .ci/after-failure.sh

-40
This file was deleted.

Diff for: .ci/release-notes.sh

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env bash
2+
3+
# This file is part of the Zephir.
4+
#
5+
# (c) Zephir Team <[email protected]>
6+
#
7+
# For the full copyright and license information, please view
8+
# the LICENSE file that was distributed with this source code.
9+
10+
# shellcheck disable=SC2002
11+
12+
# -e Exit immediately if a command exits with a non-zero status.
13+
# -u Treat unset variables as an error when substituting.
14+
15+
set -eu
16+
set -o pipefail
17+
18+
# Get Release notes for the latest release from CHANGELOG.md
19+
# How to use:
20+
# release-notes.sh CHANGELOG.md > ReleaseNotes.md
21+
22+
23+
startline=$(cat "$1" | grep -nE '^### ' | head -n 1 | cut -d ":" -f 1)
24+
finishline=$(($(cat "$1" | grep -nE '^## \[[0-9]+' | head -n 2 | tail -n 1 | cut -d ":" -f 1) - 1))
25+
changelog=$(sed -n "${startline},${finishline}p" "$1");
26+
27+
echo "${changelog}"

Diff for: .ci/run-tests.sh

-23
This file was deleted.

Diff for: .ci/vsenv.bat

-41
This file was deleted.

0 commit comments

Comments
 (0)