execonvert 0.4.1 → 0.4.2

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 CHANGED
@@ -9,6 +9,13 @@ Categorías usadas: **Añadido**, **Cambiado**, **Corregido**, **Eliminado**.
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [0.4.2] - 2026-06-25
13
+
14
+ ### Corregido
15
+ - `CLI_VERSION` ya no está hardcodeado: el script de build lo inyecta desde
16
+ `package.json` al compilar, por lo que versión del binario y versión del
17
+ paquete npm siempre coinciden sin intervención manual.
18
+
12
19
  ## [0.4.1] - 2026-06-25
13
20
 
14
21
  ### Corregido
@@ -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.4.0';
12
+ const CLI_VERSION = '0.4.2';
13
13
  const cliMessages = {
14
14
  es: {
15
15
  'help.title': 'CLI de eXeConvert',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "execonvert",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "bin": {