Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v0.5.1 #690

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d

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

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

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

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

> 13 February 2025

- chore: release v0.5.1 [`#690`](https://github.com/hougesen/mdsf/pull/690)
- build(deps-dev): bump eslint from 9.19.0 to 9.20.1 in /mdsf-vscode [`#689`](https://github.com/hougesen/mdsf/pull/689)
- build(deps-dev): bump @types/vscode in /mdsf-vscode [`#685`](https://github.com/hougesen/mdsf/pull/685)
- build(deps-dev): bump @typescript-eslint/parser in /mdsf-vscode [`#688`](https://github.com/hougesen/mdsf/pull/688)
- build(deps): bump clap from 4.5.28 to 4.5.29 [`#682`](https://github.com/hougesen/mdsf/pull/682)
- build(deps-dev): bump globals from 15.14.0 to 15.15.0 in /mdsf-vscode [`#687`](https://github.com/hougesen/mdsf/pull/687)
- build(deps-dev): bump @eslint/js from 9.19.0 to 9.20.0 in /mdsf-vscode [`#686`](https://github.com/hougesen/mdsf/pull/686)
- build(deps-dev): bump @typescript-eslint/eslint-plugin in /mdsf-vscode [`#683`](https://github.com/hougesen/mdsf/pull/683)
- build(deps): bump which from 7.0.1 to 7.0.2 [`#681`](https://github.com/hougesen/mdsf/pull/681)
- feat(cli): add documentation to tool jsonschema [`#680`](https://github.com/hougesen/mdsf/pull/680)
- feat(cli): support the R formatter air [`#679`](https://github.com/hougesen/mdsf/pull/679)
- build(deps-dev): bump esbuild in /mdsf-vscode in the npm_and_yarn group [`#678`](https://github.com/hougesen/mdsf/pull/678)
- feat(cli): support codeql query format [`#677`](https://github.com/hougesen/mdsf/pull/677)
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.

4 changes: 2 additions & 2 deletions 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.1-dev
mdsf 0.5.1
Format, and lint, markdown code snippets using your favorite tools
Mads Hougesen <mads@mhouge.dk>

Expand Down Expand Up @@ -345,7 +345,7 @@ mdsf init
| Name | Description | Categories | Languages |
| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ------------------------------------------------------------------------- |
| [actionlint](https://github.com/rhysd/actionlint) | Static checker for GitHub Actions workflow files | `linter` | `yaml` |
| [air](https://github.com/posit-dev/air) | R formatter and language server | `formatter`, `lsp` | `r` |
| [air](https://github.com/posit-dev/air) | R formatter and language server | `formatter` | `r` |
| [alejandra](https://github.com/kamadorueda/alejandra) | The Uncompromising Nix Code Formatter | `formatter` | `nix` |
| [ameba](https://github.com/crystal-ameba/ameba) | A static code analysis tool for Crystal | `linter` | `crystal` |
| [ansible-lint](https://github.com/ansible/ansible-lint) | ansible-lint checks playbooks for practices and behavior that could potentially be improved and can fix some of the most common ones for you | `linter` | `ansible` |
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.1-dev",
"version": "0.5.1",
"engines": {
"vscode": "^1.96.0"
},
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.1-dev"
version = "0.5.1"
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.1-dev/mdsf.schema.json",
"default": "https://raw.githubusercontent.com/hougesen/mdsf/main/schemas/v0.5.1/mdsf.schema.json",
"type": "string"
},
"custom_file_extensions": {
Expand Down
2 changes: 1 addition & 1 deletion tools/air/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../tool.schema.json",
"binary": "air",
"categories": ["formatter", "lsp"],
"categories": ["formatter"],
"commands": {
"format": {
"arguments": ["format", "$PATH"],
Expand Down
Loading