execonvert 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/cli/cli/execonvert.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ Categorías usadas: **Añadido**, **Cambiado**, **Corregido**, **Eliminado**.
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.4.1] - 2026-06-25
|
|
13
|
+
|
|
14
|
+
### Corregido
|
|
15
|
+
- La versión reportada por `execonvert --version` mostraba `0.3.1` en lugar de `0.4.0`
|
|
16
|
+
porque `CLI_VERSION` estaba hardcodeado en el fuente y no se actualizó en el bump anterior.
|
|
17
|
+
|
|
12
18
|
## [0.4.0] - 2026-06-25
|
|
13
19
|
|
|
14
20
|
### Añadido
|
|
@@ -9,7 +9,7 @@ import { convertElpxToMarkdown } from '../src/elpx-markdown.js';
|
|
|
9
9
|
import { convertElpToElpx } from '../src/legacy-elp.js';
|
|
10
10
|
import { convertMarkdownToElpx } from '../src/markdown-import.js';
|
|
11
11
|
import { installCliRuntime } from './runtime.js';
|
|
12
|
-
const CLI_VERSION = '0.
|
|
12
|
+
const CLI_VERSION = '0.4.0';
|
|
13
13
|
const cliMessages = {
|
|
14
14
|
es: {
|
|
15
15
|
'help.title': 'CLI de eXeConvert',
|