Skip to content

Commit

Permalink
chore(release): 7.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mara-Li committed Oct 4, 2024
1 parent 9364e7d commit b9d6e7c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [7.4.0](https://github.com/Enveloppe/obsidian-enveloppe/compare/7.3.2...7.4.0) (2024-10-04)
### Features

* **upload:** prevent forced update (default: false) ([7f92528](https://github.com/Enveloppe/obsidian-enveloppe/commit/7f9252847eeeb6146ee2c2798e402ff799d3bce3))
* **upload:** prevent forced update (default: false) ([b7053a2](https://github.com/Enveloppe/obsidian-enveloppe/commit/b7053a24583f890f32c4c7ee701475b2b3f63998))

### Bug Fixes

* allow force push "first" file ([90a6186](https://github.com/Enveloppe/obsidian-enveloppe/commit/90a618650c0e59ad53f09c73a9fec91d7b137881))

## [7.3.2](https://github.com/Enveloppe/obsidian-enveloppe/compare/7.3.1...7.3.2) (2024-09-22)
### Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-mkdocs-publisher",
"name": "Enveloppe",
"version": "7.3.2",
"version": "7.4.0",
"minAppVersion": "0.15.4",
"description": "Enveloppe helps you to publish your notes on a preconfigured GitHub repository, for free, and more!",
"author": "Mara-Li",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-mkdocs-publisher",
"name": "Enveloppe",
"version": "7.3.2",
"version": "7.4.0",
"minAppVersion": "0.15.4",
"description": "Enveloppe helps you to publish your notes on a preconfigured GitHub repository, for free, and more!",
"author": "Mara-Li",
Expand Down
19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "obsidian-github-publisher",
"version": "7.3.2",
"name": "obsidian-enveloppe",
"version": "7.4.0",
"description": "Github Publisher is a plugin that help you to send file in a configured Github Repository, based on a frontmatter entry state.",
"main": "main.js",
"private": true,
"config": {
"engine": "bun"
"port": "1337"
},
"scripts": {
"lint": "biome format --write src/",
Expand All @@ -14,11 +14,11 @@
"dev:prod": "node esbuild.config.mjs --vault",
"dev": "node esbuild.config.mjs",
"export": "node esbuild.config.mjs --production --vault",
"prebump": "%npm_package_config_engine% run prebuild",
"bump": "node commit-and-tag-version.mjs",
"postbump": "git push --follow-tags origin master",
"predeploy": "%npm_package_config_engine% run bump",
"deploy": "%npm_package_config_engine% run export"
"prerelease": "dotenv cross-var %ENGINE% run prebuild",
"release": "node commit-and-tag-version.mjs",
"postrelease": "git push --follow-tags origin master",
"predeploy": "dotenv cross-var %ENGINE% run bump",
"deploy": "dotenv cross-var %ENGINE% run export"
},
"commit-and-tag-version": {
"t": ""
Expand Down Expand Up @@ -55,7 +55,10 @@
"typescript": "^5.6.2"
},
"dependencies": {
"cross-var": "^1.1.0",
"dedent": "^1.5.3",
"dotenv-cli": "^7.4.2",
"env-cmd": "^10.1.0",
"ts-deepmerge": "^6.2.1",
"tslog": "^4.9.3"
},
Expand Down

0 comments on commit b9d6e7c

Please sign in to comment.