Skip to content

Commit b9d6e7c

Browse files
committed
chore(release): 7.4.0
1 parent 9364e7d commit b9d6e7c

File tree

4 files changed

+23
-10
lines changed

4 files changed

+23
-10
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [7.4.0](https://github.com/Enveloppe/obsidian-enveloppe/compare/7.3.2...7.4.0) (2024-10-04)
2+
### Features
3+
4+
* **upload:** prevent forced update (default: false) ([7f92528](https://github.com/Enveloppe/obsidian-enveloppe/commit/7f9252847eeeb6146ee2c2798e402ff799d3bce3))
5+
* **upload:** prevent forced update (default: false) ([b7053a2](https://github.com/Enveloppe/obsidian-enveloppe/commit/b7053a24583f890f32c4c7ee701475b2b3f63998))
6+
7+
### Bug Fixes
8+
9+
* allow force push "first" file ([90a6186](https://github.com/Enveloppe/obsidian-enveloppe/commit/90a618650c0e59ad53f09c73a9fec91d7b137881))
10+
111
## [7.3.2](https://github.com/Enveloppe/obsidian-enveloppe/compare/7.3.1...7.3.2) (2024-09-22)
212
### Bug Fixes
313

manifest-beta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-mkdocs-publisher",
33
"name": "Enveloppe",
4-
"version": "7.3.2",
4+
"version": "7.4.0",
55
"minAppVersion": "0.15.4",
66
"description": "Enveloppe helps you to publish your notes on a preconfigured GitHub repository, for free, and more!",
77
"author": "Mara-Li",

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-mkdocs-publisher",
33
"name": "Enveloppe",
4-
"version": "7.3.2",
4+
"version": "7.4.0",
55
"minAppVersion": "0.15.4",
66
"description": "Enveloppe helps you to publish your notes on a preconfigured GitHub repository, for free, and more!",
77
"author": "Mara-Li",

package.json

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "obsidian-github-publisher",
3-
"version": "7.3.2",
2+
"name": "obsidian-enveloppe",
3+
"version": "7.4.0",
44
"description": "Github Publisher is a plugin that help you to send file in a configured Github Repository, based on a frontmatter entry state.",
55
"main": "main.js",
66
"private": true,
77
"config": {
8-
"engine": "bun"
8+
"port": "1337"
99
},
1010
"scripts": {
1111
"lint": "biome format --write src/",
@@ -14,11 +14,11 @@
1414
"dev:prod": "node esbuild.config.mjs --vault",
1515
"dev": "node esbuild.config.mjs",
1616
"export": "node esbuild.config.mjs --production --vault",
17-
"prebump": "%npm_package_config_engine% run prebuild",
18-
"bump": "node commit-and-tag-version.mjs",
19-
"postbump": "git push --follow-tags origin master",
20-
"predeploy": "%npm_package_config_engine% run bump",
21-
"deploy": "%npm_package_config_engine% run export"
17+
"prerelease": "dotenv cross-var %ENGINE% run prebuild",
18+
"release": "node commit-and-tag-version.mjs",
19+
"postrelease": "git push --follow-tags origin master",
20+
"predeploy": "dotenv cross-var %ENGINE% run bump",
21+
"deploy": "dotenv cross-var %ENGINE% run export"
2222
},
2323
"commit-and-tag-version": {
2424
"t": ""
@@ -55,7 +55,10 @@
5555
"typescript": "^5.6.2"
5656
},
5757
"dependencies": {
58+
"cross-var": "^1.1.0",
5859
"dedent": "^1.5.3",
60+
"dotenv-cli": "^7.4.2",
61+
"env-cmd": "^10.1.0",
5962
"ts-deepmerge": "^6.2.1",
6063
"tslog": "^4.9.3"
6164
},

0 commit comments

Comments
 (0)