Skip to content

Commit 0e5d82f

Browse files
targosryzokuken
authored andcommitted
chore: add release-please action
1 parent 5a2794a commit 0e5d82f

File tree

2 files changed

+55
-44
lines changed

2 files changed

+55
-44
lines changed

.github/workflows/release-please.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
6+
name: release-please
7+
jobs:
8+
release-please:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: GoogleCloudPlatform/release-please-action@v2.5.6
12+
with:
13+
token: ${{ secrets.GITHUB_TOKEN }}
14+
release-type: python
15+
package-name: gyp-next
16+
bump-minor-pre-major: Yes

CHANGELOG.md

Lines changed: 39 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,62 @@
11
# Changelog
22

3-
All notable changes to this project will be documented in this file.
3+
### [0.6.1](https://github.com/nodejs/gyp-next/compare/v0.6.0...v0.6.1) (2020-10-14)
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
65

7-
## [Unreleased]
6+
### Bug Fixes
87

9-
## [0.6.1] - 2020-10-14
8+
* Correctly rename object files for absolute paths in MSVS generator.
109

11-
### Fixed
12-
- Correctly rename object files for absolute paths in MSVS generator.
10+
## [0.6.0](https://github.com/nodejs/gyp-next/compare/v0.5.0...v0.6.0) (2020-10-13)
1311

14-
## [0.6.0] - 2020-10-13
1512

16-
### Added
17-
- The Makefile generator will now output shared libraries directly to the product
18-
directory on all platforms (previously only macOS).
13+
### Features
1914

20-
## [0.5.0] - 2020-09-30
15+
* The Makefile generator will now output shared libraries directly to the product directory on all platforms (previously only macOS).
2116

22-
### Added
23-
- Extended compile_commands_json generator to consider more file extensions than
24-
just `c` and `cc`. `cpp` and `cxx` are now supported.
25-
- Source files with duplicate basenames are now supported.
17+
## [0.5.0](https://github.com/nodejs/gyp-next/compare/v0.4.0...v0.5.0) (2020-09-30)
18+
19+
20+
### Features
21+
22+
* Extended compile_commands_json generator to consider more file extensions than just `c` and `cc`. `cpp` and `cxx` are now supported.
23+
* Source files with duplicate basenames are now supported.
2624

2725
### Removed
28-
- The `--no-duplicate-basename-check` option was removed.
29-
- The `msvs_enable_marmasm` configuration option was removed in favor of
30-
auto-inclusion of the "marmasm" sections for Windows on ARM.
3126

32-
## [0.4.0] - 2020-07-14
27+
* The `--no-duplicate-basename-check` option was removed.
28+
* The `msvs_enable_marmasm` configuration option was removed in favor of auto-inclusion of the "marmasm" sections for Windows on ARM.
29+
30+
## [0.4.0](https://github.com/nodejs/gyp-next/compare/v0.3.0...v0.4.0) (2020-07-14)
31+
32+
33+
### Features
34+
35+
* Added support for passing arbitrary architectures to Xcode builds, enables `arm64` builds.
36+
37+
### Bug Fixes
38+
39+
* Fixed a bug on Solaris where copying archives failed.
40+
41+
## [0.3.0](https://github.com/nodejs/gyp-next/compare/v0.2.1...v0.3.0) (2020-06-06)
42+
3343

34-
### Added
35-
- Added support for passing arbitrary architectures to Xcode builds, enables `arm64` builds.
44+
### Features
3645

37-
### Fixed
38-
- Fixed a bug on Solaris where copying archives failed.
46+
* Added support for MSVC cross-compilation. This allows compilation on x64 for a Windows ARM target.
3947

40-
## [0.3.0] - 2020-06-06
48+
### Bug Fixes
4149

42-
### Added
43-
- Added support for MSVC cross-compilation. This allows compilation on x64 for
44-
a Windows ARM target.
50+
* Fixed XCode CLT version detection on macOS Catalina.
4551

46-
### Fixed
47-
- Fixed XCode CLT version detection on macOS Catalina.
52+
### [0.2.1](https://github.com/nodejs/gyp-next/compare/v0.2.0...v0.2.1) (2020-05-05)
4853

49-
## [0.2.1] - 2020-05-05
5054

51-
### Fixed
52-
- Relicensed to Node.js contributors.
53-
- Fixed Windows bug introduced in v0.2.0.
55+
### Bug Fixes
5456

55-
## [0.2.0] - 2020-04-06
57+
* Relicensed to Node.js contributors.
58+
* Fixed Windows bug introduced in v0.2.0.
5659

57-
This is the first release of this project, based on https://chromium.googlesource.com/external/gyp
58-
with changes made over the years in Node.js and node-gyp.
60+
## [0.2.0](https://github.com/nodejs/gyp-next/releases/tag/v0.2.0) (2020-04-06)
5961

60-
[Unreleased]: https://github.com/nodejs/gyp-next/compare/v0.6.1...HEAD
61-
[0.6.1]: https://github.com/nodejs/gyp-next/compare/v0.6.0...v0.6.1
62-
[0.6.0]: https://github.com/nodejs/gyp-next/compare/v0.5.0...v0.6.0
63-
[0.5.0]: https://github.com/nodejs/gyp-next/compare/v0.4.0...v0.5.0
64-
[0.4.0]: https://github.com/nodejs/gyp-next/compare/v0.3.0...v0.4.0
65-
[0.3.0]: https://github.com/nodejs/gyp-next/compare/v0.2.1...v0.3.0
66-
[0.2.1]: https://github.com/nodejs/gyp-next/compare/v0.2.0...v0.2.1
67-
[0.2.0]: https://github.com/nodejs/gyp-next/releases/tag/v0.2.0
62+
This is the first release of this project, based on https://chromium.googlesource.com/external/gyp with changes made over the years in Node.js and node-gyp.

0 commit comments

Comments
 (0)