| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 130777a commit 747247b
5 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,7 +11,7 @@ jobs: | |||
| 11 | 11 | max-parallel: 8 | |
| 12 | 12 | matrix: | |
| 13 | 13 | os: [macos-latest, ubuntu-latest] # , windows-latest] | |
| 14 | - python-version: [3.6, 3.7, 3.8, 3.9] | ||
| 14 | + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] | ||
| 15 | 15 | steps: | |
| 16 | 16 | - uses: actions/checkout@v2 | |
| 17 | 17 | - name: Set up Python ${{ matrix.python-version }} | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ jobs: | |||
| 8 | 8 | fail-fast: false | |
| 9 | 9 | matrix: | |
| 10 | 10 | os: [macos-latest, ubuntu-latest, windows-latest] | |
| 11 | - python: [3.6, 3.9] | ||
| 11 | + python: ["3.6", "3.10"] | ||
| 12 | 12 | ||
| 13 | 13 | runs-on: ${{ matrix.os }} | |
| 14 | 14 | steps: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,12 @@ | |||
| 1 | 1 | # Changelog | |
| 2 | 2 | ||
| 3 | + ### [0.10.1](https://www.github.com/nodejs/gyp-next/compare/v0.10.0...v0.10.1) (2021-11-24) | ||
| 4 | + | ||
| 5 | + | ||
| 6 | + ### Bug Fixes | ||
| 7 | + | ||
| 8 | + * **make:** only generate makefile for multiple toolsets if requested ([#133](https://www.github.com/nodejs/gyp-next/issues/133)) ([f463a77](https://www.github.com/nodejs/gyp-next/commit/f463a77705973289ea38fec1b244c922ac438e26)) | ||
| 9 | + | ||
| 3 | 10 | ## [0.10.0](https://www.github.com/nodejs/gyp-next/compare/v0.9.6...v0.10.0) (2021-08-26) | |
| 4 | 11 | ||
| 5 | 12 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -50,7 +50,7 @@ | |||
| 50 | 50 | } | |
| 51 | 51 | ||
| 52 | 52 | # Make supports multiple toolsets | |
| 53 | - generator_supports_multiple_toolsets = True | ||
| 53 | + generator_supports_multiple_toolsets = gyp.common.CrossCompileRequested() | ||
| 54 | 54 | ||
| 55 | 55 | # Request sorted dependencies in the order from dependents to dependencies. | |
| 56 | 56 | generator_wants_sorted_dependencies = False | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -15,7 +15,7 @@ | |||
| 15 | 15 | ||
| 16 | 16 | setup( | |
| 17 | 17 | name="gyp-next", | |
| 18 | - version="0.10.0", | ||
| 18 | + version="0.10.1", | ||
| 19 | 19 | description="A fork of the GYP build system for use in the Node.js projects", | |
| 20 | 20 | long_description=long_description, | |
| 21 | 21 | long_description_content_type="text/markdown", | |
| Back | FazBrowse Home | New Git URL |
0 commit comments