Skip to content

Commit 6804ae5

Browse files
authored
Merge branch 'main' into feature/hatch-vcs-versioning
2 parents a1c1f84 + 8ac9a4c commit 6804ae5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

33
## 1.4.0 (unreleased)
44

5-
- Chore: Migrate to hatch-vcs for automated versioning from git tags.
5+
- Critical fix: `SOURCES_TARGET` used mxdev wrongly with `-o` (offline) option.
6+
The offline option had a bug and was fixed in mxdev [#34](https://github.com/mxstack/mxdev/issues/34) and released with mxdev>=5.
7+
This fix switches from `-o` to the correct `-f` (no fetch from vcs).
8+
To update your makefile use `mxmake update` in the folder with your `Makefile`.
69
- Fix: theme for newer Sphinx 7.x.
710
- Fix: interactive uv venv, use --allow-existing instead.
811
- Feature: Add support for Python 3.14.
912
- Feature: Add `docs-linkcheck` to check for broken links in the sphinx documentation.
13+
- Chore: Migrate to hatch-vcs for automated versioning from git tags.
1014

1115
## 1.3.0 (2025-09-03)
1216

src/mxmake/topics/core/sources.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
SOURCES_TARGET:=$(SENTINEL_FOLDER)/sources.sentinel
2121
$(SOURCES_TARGET): $(PROJECT_CONFIG) $(MXENV_TARGET)
2222
@echo "Checkout project sources"
23-
@mxdev -o -c $(PROJECT_CONFIG)
23+
@mxdev -f -c $(PROJECT_CONFIG)
2424
@touch $(SOURCES_TARGET)
2525

2626
.PHONY: sources

0 commit comments

Comments
 (0)