Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ serialize = {major}.{minor}.{patch}
commit = True
tag = True

[bumpversion:file:FaCT++.Python/pyfactxx/__init__.py]
[bumpversion:file:FaCT++.Python/src/pyfactxx/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

Expand Down
1 change: 1 addition & 0 deletions .github/actions/msvc-dev-cmd/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
7 changes: 7 additions & 0 deletions .github/actions/msvc-dev-cmd/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# msvc-dev-cmd

This is a temprorary soft fork of the [msvc-dev-cmd](https://github.com/ilammy/msvc-dev-cmd) action.
Pending the adoption of the following PR:

- [Update NodeJS to v24](https://github.com/ilammy/msvc-dev-cmd/pull/94)
- [Bundle dependencies](https://github.com/ilammy/msvc-dev-cmd/pull/95)
22 changes: 22 additions & 0 deletions .github/actions/msvc-dev-cmd/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Enable Developer Command Prompt
description: Configure Microsoft Visual C++ command line
inputs:
arch:
description: Target architecture
default: x64
sdk:
description: Windows SDK number to build for
spectre:
description: Enable Specre mitigations
toolset:
description: VC++ compiler toolset version
uwp:
description: Build for Universal Windows Platform
vsversion:
description: The Visual Studio version to use. This can be the version number (e.g. 16.0 for 2019) or the year (e.g. "2019").
runs:
using: node24
main: dist/index.js
branding:
icon: terminal
color: purple
Loading