Skip to content

Commit 4056f09

Browse files
committed
chore: bump version
1 parent 05942dd commit 4056f09

6 files changed

+7
-5
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77

88

9-
## [Unreleased]
9+
## [2.0.0]
1010
### Added
1111
- Persistent output blocks (Thanks to @chlohal and @twibiral)
1212

Diff for: manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "execute-code",
33
"name": "Execute Code",
4-
"version": "1.12.0",
4+
"version": "2.0.0",
55
"minAppVersion": "1.2.8",
66
"description": "Allows to execute code snippets within a note. Supported programming languages: C, CPP, Dart, Golang, Groovy, Kotlin, Java, JavaScript, TypeScript, Lean, Lua, CSharp, Prolog, Rust, Python, R, Ruby, Wolfram Mathematica, Haskell, Scala, Racket, F#, Batch, Shell & Powershell.",
77
"author": "twibiral",

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "execute-code",
3-
"version": "1.12.0",
3+
"version": "2.0.0",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "src/main.js",
66
"scripts": {

Diff for: version-bump.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
import {readFileSync, writeFileSync} from "fs";
77

8+
// READ TARGET VERSION FROM NPM package.json
89
const targetVersion = process.env.npm_package_version;
910

1011
// read minAppVersion from manifest.json and bump version to target version

Diff for: versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,6 @@
4747
"1.10.0": "1.2.8",
4848
"1.11.0": "1.2.8",
4949
"1.11.1": "1.2.8",
50-
"1.12.0": "1.2.8"
50+
"1.12.0": "1.2.8",
51+
"2.0.0": "1.2.8"
5152
}

0 commit comments

Comments
 (0)