Skip to content

Commit

Permalink
chore: version bump & changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
kiliantyler committed Mar 1, 2024
1 parent 96d849c commit c58e62d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to the "kubernetes-yaml-formatter-x" extension will be docum

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## 2.0.0 (29 Feb 2024)

Ansible is now a targetable format!

Also this exension will set itself as the default for ansible files the same way that it does for yaml. (You can disable this)

## 1.4.0 (29 Feb 2024)

Hello from a day that doesn't exist!
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,19 @@ It makes format yaml on save default to `true`, you can disable it:
}
```

## Default Language settings

```json
"[yaml]": {
"editor.defaultFormatter": "kiliantyler.kubernetes-yaml-formatter-x",
"editor.formatOnSave": true
},
"[ansible]": {
"editor.defaultFormatter": "kiliantyler.kubernetes-yaml-formatter-x",
"editor.formatOnSave": true
}
```

## Config Precidence

```
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Kubernetes YAML Formatter X",
"icon": "images/icon.png",
"description": "An even better YAML formatter for DevOps like Kubernetes, Ansible, CI/CD, etc.",
"version": "1.4.0",
"version": "2.0.0",
"publisher": "kiliantyler",
"repository": {
"url": "https://github.com/kiliantyler/kubernetes-yaml-formatter-x.git",
Expand Down Expand Up @@ -124,6 +124,10 @@
"[yaml]": {
"editor.defaultFormatter": "kiliantyler.kubernetes-yaml-formatter-x",
"editor.formatOnSave": true
},
"[ansible]": {
"editor.defaultFormatter": "kiliantyler.kubernetes-yaml-formatter-x",
"editor.formatOnSave": true
}
}
},
Expand Down

0 comments on commit c58e62d

Please sign in to comment.