Skip to content

Commit

Permalink
chore: release v0.5.2 (#717)
Browse files Browse the repository at this point in the history
* chore: release v0.5.2

* ci: give codegen write contents permission

* fix: add back add command

* fix: don't format everything with prettier
  • Loading branch information
hougesen authored Feb 21, 2025
1 parent 151789d commit f76c010
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
- run: cargo run --package mdsf-codegen
- run: cargo fmt
- run: cargo run -- format README.md
- run: npx prettier@latest --write schemas mdsf.json README.md
- run: npx prettier@latest --write schemas mdsf.json README.md tools
- uses: EndBug/add-and-commit@v9
with:
add: schemas mdsf.json README.md tools mdsf/
message: "chore: updated generated code"
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelo.
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [Unreleased](https://github.com/hougesen/mdsf/compare/v0.5.1...HEAD)
#### [Unreleased](https://github.com/hougesen/mdsf/compare/v0.5.2...HEAD)

#### [v0.5.2](https://github.com/hougesen/mdsf/compare/v0.5.1...v0.5.2)

> 21 February 2025
- chore: release v0.5.2 [`#717`](https://github.com/hougesen/mdsf/pull/717)
- feat(cli): add support for nasmfmt [`#716`](https://github.com/hougesen/mdsf/pull/716)
- feat(cli): add support for runic [`#715`](https://github.com/hougesen/mdsf/pull/715)
- build(deps-dev): bump globals from 15.15.0 to 16.0.0 in /mdsf-vscode [`#707`](https://github.com/hougesen/mdsf/pull/707)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ mdsf can be run easily using the VSCode extension.
<!-- START_SECTION:base-command-help -->

```
mdsf 0.5.2-dev
mdsf 0.5.2
Format, and lint, markdown code snippets using your favorite tools
Mads Hougesen <mads@mhouge.dk>
Expand Down
4 changes: 2 additions & 2 deletions mdsf-vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mdsf-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "mdsf",
"publisher": "hougesen",
"description": "Format markdown code blocks using mdsf",
"version": "0.5.2-dev",
"version": "0.5.2",
"engines": {
"vscode": "^1.96.0"
},
Expand Down
2 changes: 1 addition & 1 deletion mdsf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "./schemas/v0.5.2-dev/mdsf.schema.json",
"$schema": "./schemas/v0.5.2/mdsf.schema.json",
"custom_file_extensions": {},
"format_finished_document": false,
"javascript_runtime": "node",
Expand Down
2 changes: 1 addition & 1 deletion mdsf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdsf"
version = "0.5.2-dev"
version = "0.5.2"
edition.workspace = true
description = "Format, and lint, markdown code snippets using your favorite tools"
authors.workspace = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "object",
"properties": {
"$schema": {
"default": "https://raw.githubusercontent.com/hougesen/mdsf/main/schemas/v0.5.2-dev/mdsf.schema.json",
"default": "https://raw.githubusercontent.com/hougesen/mdsf/main/schemas/v0.5.2/mdsf.schema.json",
"type": "string"
},
"custom_file_extensions": {
Expand Down

0 comments on commit f76c010

Please sign in to comment.