Skip to content

Commit

Permalink
release: apply version updates from current changes (#63)
Browse files Browse the repository at this point in the history
Co-authored-by: amr-crabnebula <[email protected]>
  • Loading branch information
github-actions[bot] and amr-crabnebula committed Dec 13, 2023
1 parent c4fa8fd commit a373dd6
Show file tree
Hide file tree
Showing 14 changed files with 52 additions and 45 deletions.
5 changes: 0 additions & 5 deletions .changes/appimage-files.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/binary-path-breaking-change.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/dmg-config.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/non-exhuastive.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/packager-nodejs-updater-initial-release.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/windows-alternative-signtool.md

This file was deleted.

9 changes: 9 additions & 0 deletions bindings/packager/nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## \[0.1.0]

- [`c4fa8fd`](https://www.github.com/crabnebula-dev/cargo-packager/commit/c4fa8fd6334b7fd0c32710ea2df0b54aa6bde713) Initial release.

### Dependencies

- Upgraded to `[email protected]`
2 changes: 1 addition & 1 deletion bindings/packager/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crabnebula/packager",
"version": "0.0.0",
"version": "0.1.0",
"main": "build/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
Expand Down
9 changes: 9 additions & 0 deletions bindings/updater/nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## \[0.1.0]

- [`c4fa8fd`](https://www.github.com/crabnebula-dev/cargo-packager/commit/c4fa8fd6334b7fd0c32710ea2df0b54aa6bde713) Initial release.

### Dependencies

- Upgraded to `[email protected]`
2 changes: 1 addition & 1 deletion bindings/updater/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crabnebula/updater",
"version": "0.0.0",
"version": "0.1.0",
"main": "./index.js",
"types": "./index.d.ts",
"napi": {
Expand Down
8 changes: 8 additions & 0 deletions crates/packager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## \[0.4.0]

- [`ecde3fb`](https://www.github.com/crabnebula-dev/cargo-packager/commit/ecde3fb71a8f120e71d4781c11214db750042cc4)([#58](https://www.github.com/crabnebula-dev/cargo-packager/pull/58)) Added `files` configuration under `AppImageConfig` for adding custom files on the AppImage's AppDir.
- [`ecde3fb`](https://www.github.com/crabnebula-dev/cargo-packager/commit/ecde3fb71a8f120e71d4781c11214db750042cc4)([#58](https://www.github.com/crabnebula-dev/cargo-packager/pull/58)) Renamed binary `filename` property to `path`, which supports absolute paths.
- [`f04c17f`](https://www.github.com/crabnebula-dev/cargo-packager/commit/f04c17f72a4af306f47065aff405c4bd0f7b6442)([#87](https://www.github.com/crabnebula-dev/cargo-packager/pull/87)) Add `config.dmg` to configure the DMG on macOS.
- [`21a6c9e`](https://www.github.com/crabnebula-dev/cargo-packager/commit/21a6c9ef4ddbefe9a6e6c5abf287f2ad993edffb)([#84](https://www.github.com/crabnebula-dev/cargo-packager/pull/84)) Mark most of the types as `non_exhaustive` to allow adding more field later on without having to break downstream users use the newly added helper methods on these types to modify the corresponding fields in-place.
- [`db75777`](https://www.github.com/crabnebula-dev/cargo-packager/commit/db75777d2799ca37217d568befad39b9377cfa2a) Add `config.windows.sign_command` which can be used to override signing command on windows and allows usage of tools other than `signtool.exe`.

## \[0.3.0]

- [`65b8c20`](https://www.github.com/crabnebula-dev/cargo-packager/commit/65b8c20a96877038daa4907b80cd96f96e0bfe33)([#54](https://www.github.com/crabnebula-dev/cargo-packager/pull/54)) Code sign binaries and frameworks on macOS.
Expand Down
2 changes: 1 addition & 1 deletion crates/packager/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-packager"
version = "0.3.0"
version = "0.4.0"
description = "Executable packager and bundler distributed as a CLI and library."
authors = [
"CrabNebula Ltd.",
Expand Down
5 changes: 5 additions & 0 deletions crates/updater/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## \[0.1.0]

- [`c4fa8fd`](https://www.github.com/crabnebula-dev/cargo-packager/commit/c4fa8fd6334b7fd0c32710ea2df0b54aa6bde713) Initial release.
28 changes: 18 additions & 10 deletions crates/updater/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
[package]
name = "cargo-packager-updater"
version = "0.0.0"
version = "0.1.0"
description = "Rust executable updater."
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[package.authors]
workspace = true

[package.edition]
workspace = true

[package.license]
workspace = true

[package.repository]
workspace = true

[features]
native-tls = ["reqwest/native-tls"]
native-tls-vendored = ["reqwest/native-tls-vendored"]
rustls-tls = ["reqwest/rustls-tls"]
native-tls = [ "reqwest/native-tls" ]
native-tls-vendored = [ "reqwest/native-tls-vendored" ]
rustls-tls = [ "reqwest/rustls-tls" ]

[dependencies]
reqwest = { version = "0.11", default-features = false, features = [ "json", "stream", "blocking" ] }
Expand All @@ -21,9 +29,9 @@ dunce = { workspace = true }
dirs = { workspace = true }
semver = { workspace = true }
base64 = { workspace = true }
time = { workspace = true, features = ["parsing", "formatting"] }
time = { workspace = true, features = [ "parsing", "formatting" ] }
http = "0.2"
url = { version = "2.5", features = ["serde"]}
url = { version = "2.5", features = [ "serde" ] }
minisign-verify = "0.2"
ctor = "0.2"
tempfile = "3.8"
Expand Down

0 comments on commit a373dd6

Please sign in to comment.