From 27c7557fc226291d6a4b26a627bc8836211f01e8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 29 Aug 2023 16:35:12 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/grumpy-rice-eat.md | 5 ----- .changeset/lucky-maps-travel.md | 6 ------ .changeset/sweet-dragons-live.md | 5 ----- package-lock.json | 16 ++++++++-------- packages/jtex/CHANGELOG.md | 8 ++++++++ packages/jtex/package.json | 4 ++-- packages/myst-cli/CHANGELOG.md | 10 ++++++++++ packages/myst-cli/package.json | 6 +++--- packages/myst-templates/CHANGELOG.md | 6 ++++++ packages/myst-templates/package.json | 2 +- packages/mystmd-py/setup.cfg | 2 +- packages/mystmd/CHANGELOG.md | 2 ++ packages/mystmd/package.json | 4 ++-- 13 files changed, 43 insertions(+), 33 deletions(-) delete mode 100644 .changeset/grumpy-rice-eat.md delete mode 100644 .changeset/lucky-maps-travel.md delete mode 100644 .changeset/sweet-dragons-live.md diff --git a/.changeset/grumpy-rice-eat.md b/.changeset/grumpy-rice-eat.md deleted file mode 100644 index 5f1446147..000000000 --- a/.changeset/grumpy-rice-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'myst-cli': patch ---- - -checkLink is exported diff --git a/.changeset/lucky-maps-travel.md b/.changeset/lucky-maps-travel.md deleted file mode 100644 index 9f3f69bab..000000000 --- a/.changeset/lucky-maps-travel.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'myst-templates': patch -'jtex': patch ---- - -Update the shape of affiliations in myst-template doc diff --git a/.changeset/sweet-dragons-live.md b/.changeset/sweet-dragons-live.md deleted file mode 100644 index b86220cd3..000000000 --- a/.changeset/sweet-dragons-live.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'myst-cli': patch ---- - -selectFile resolves the input file path diff --git a/package-lock.json b/package-lock.json index 694bf6125..b7923703b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13212,7 +13212,7 @@ } }, "packages/jtex": { - "version": "1.0.4", + "version": "1.0.5", "license": "MIT", "dependencies": { "adm-zip": "^0.5.10", @@ -13221,7 +13221,7 @@ "js-yaml": "^4.1.0", "myst-cli-utils": "^2.0.3", "myst-frontmatter": "^1.1.0", - "myst-templates": "^1.0.5", + "myst-templates": "^1.0.8", "node-fetch": "^3.3.1", "nunjucks": "^3.2.4", "pretty-hrtime": "^1.0.3", @@ -13263,7 +13263,7 @@ "devDependencies": {} }, "packages/myst-cli": { - "version": "1.1.13", + "version": "1.1.14", "license": "MIT", "dependencies": { "@jupyterlab/nbformat": "3.5.2", @@ -13285,7 +13285,7 @@ "inquirer": "^8.2.2", "intersphinx": "^1.0.2", "js-yaml": "^4.1.0", - "jtex": "^1.0.4", + "jtex": "^1.0.5", "latest-version": "^7.0.0", "mdast": "^3.0.0", "mime-types": "^2.1.35", @@ -13302,7 +13302,7 @@ "myst-parser": "^1.0.6", "myst-spec": "^0.0.4", "myst-spec-ext": "^1.1.4", - "myst-templates": "^1.0.7", + "myst-templates": "^1.0.8", "myst-to-docx": "^1.0.3", "myst-to-jats": "^1.0.10", "myst-to-md": "^1.0.5", @@ -13653,7 +13653,7 @@ "devDependencies": {} }, "packages/myst-templates": { - "version": "1.0.7", + "version": "1.0.8", "license": "MIT", "dependencies": { "chalk": "^5.2.0", @@ -13863,7 +13863,7 @@ } }, "packages/mystmd": { - "version": "1.1.13", + "version": "1.1.14", "license": "MIT", "bin": { "myst": "dist/myst.cjs" @@ -13871,7 +13871,7 @@ "devDependencies": { "commander": "^10.0.1", "core-js": "^3.31.1", - "myst-cli": "^1.1.13" + "myst-cli": "^1.1.14" } }, "packages/simple-validators": { diff --git a/packages/jtex/CHANGELOG.md b/packages/jtex/CHANGELOG.md index 0ed3de54f..f68845686 100644 --- a/packages/jtex/CHANGELOG.md +++ b/packages/jtex/CHANGELOG.md @@ -1,5 +1,13 @@ # jtex +## 1.0.5 + +### Patch Changes + +- 18f30dd: Update the shape of affiliations in myst-template doc +- Updated dependencies [18f30dd] + - myst-templates@1.0.8 + ## 1.0.4 ### Patch Changes diff --git a/packages/jtex/package.json b/packages/jtex/package.json index e162f5353..fbae63ff8 100644 --- a/packages/jtex/package.json +++ b/packages/jtex/package.json @@ -1,6 +1,6 @@ { "name": "jtex", - "version": "1.0.4", + "version": "1.0.5", "description": "Tool for rendering LaTeX documents from jinja-style templates", "type": "module", "exports": "./dist/index.js", @@ -50,7 +50,7 @@ "js-yaml": "^4.1.0", "myst-cli-utils": "^2.0.3", "myst-frontmatter": "^1.1.0", - "myst-templates": "^1.0.5", + "myst-templates": "^1.0.8", "node-fetch": "^3.3.1", "nunjucks": "^3.2.4", "pretty-hrtime": "^1.0.3", diff --git a/packages/myst-cli/CHANGELOG.md b/packages/myst-cli/CHANGELOG.md index 222c2eb76..066188e9a 100644 --- a/packages/myst-cli/CHANGELOG.md +++ b/packages/myst-cli/CHANGELOG.md @@ -1,5 +1,15 @@ # myst-cli +## 1.1.14 + +### Patch Changes + +- bc3e6a3f: checkLink is exported +- bc3e6a3f: selectFile resolves the input file path +- Updated dependencies [18f30dd] + - myst-templates@1.0.8 + - jtex@1.0.5 + ## 1.1.13 ### Patch Changes diff --git a/packages/myst-cli/package.json b/packages/myst-cli/package.json index 89daf10f5..4facb96e8 100644 --- a/packages/myst-cli/package.json +++ b/packages/myst-cli/package.json @@ -1,6 +1,6 @@ { "name": "myst-cli", - "version": "1.1.13", + "version": "1.1.14", "description": "Command line tools for MyST", "author": "Franklin Koch ", "license": "MIT", @@ -61,7 +61,7 @@ "inquirer": "^8.2.2", "intersphinx": "^1.0.2", "js-yaml": "^4.1.0", - "jtex": "^1.0.4", + "jtex": "^1.0.5", "latest-version": "^7.0.0", "mdast": "^3.0.0", "mime-types": "^2.1.35", @@ -78,7 +78,7 @@ "myst-parser": "^1.0.6", "myst-spec": "^0.0.4", "myst-spec-ext": "^1.1.4", - "myst-templates": "^1.0.7", + "myst-templates": "^1.0.8", "myst-to-docx": "^1.0.3", "myst-to-jats": "^1.0.10", "myst-to-md": "^1.0.5", diff --git a/packages/myst-templates/CHANGELOG.md b/packages/myst-templates/CHANGELOG.md index 6a4986684..efc5f0268 100644 --- a/packages/myst-templates/CHANGELOG.md +++ b/packages/myst-templates/CHANGELOG.md @@ -1,5 +1,11 @@ # myst-templates +## 1.0.8 + +### Patch Changes + +- 18f30dd: Update the shape of affiliations in myst-template doc + ## 1.0.7 ### Patch Changes diff --git a/packages/myst-templates/package.json b/packages/myst-templates/package.json index 0ce05984d..6472fee17 100644 --- a/packages/myst-templates/package.json +++ b/packages/myst-templates/package.json @@ -1,6 +1,6 @@ { "name": "myst-templates", - "version": "1.0.7", + "version": "1.0.8", "description": "API types and scripts for downloading MyST Templates", "author": "Rowan Cockett ", "homepage": "https://github.com/executablebooks/mystmd/tree/main/packages/myst-templates", diff --git a/packages/mystmd-py/setup.cfg b/packages/mystmd-py/setup.cfg index 809ce30f8..dae5829f3 100644 --- a/packages/mystmd-py/setup.cfg +++ b/packages/mystmd-py/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = mystmd -version = 1.1.13 +version = 1.1.14 description = Command line tools for MyST Markdown long_description = file: README.md long_description_content_type = text/markdown diff --git a/packages/mystmd/CHANGELOG.md b/packages/mystmd/CHANGELOG.md index 1f025fbaa..51e7fc0b0 100644 --- a/packages/mystmd/CHANGELOG.md +++ b/packages/mystmd/CHANGELOG.md @@ -1,5 +1,7 @@ # mystmd +## 1.1.14 + ## 1.1.13 ## 1.1.12 diff --git a/packages/mystmd/package.json b/packages/mystmd/package.json index 697a44f7b..d5732c267 100644 --- a/packages/mystmd/package.json +++ b/packages/mystmd/package.json @@ -1,6 +1,6 @@ { "name": "mystmd", - "version": "1.1.13", + "version": "1.1.14", "description": "Command line tools for MyST Markdown", "author": "Rowan Cockett ", "license": "MIT", @@ -43,6 +43,6 @@ "devDependencies": { "commander": "^10.0.1", "core-js": "^3.31.1", - "myst-cli": "^1.1.13" + "myst-cli": "^1.1.14" } }