chore: setup covector, initial release

This commit is contained in:
Lucas Nogueira
2024-07-30 16:39:57 -03:00
parent 257fbcaa86
commit 12d84ed434
11 changed files with 154 additions and 3 deletions

27
.changes/config.json Normal file
View File

@@ -0,0 +1,27 @@
{
"gitSiteUrl": "https://github.com/tauri-apps/reserved-plugins/",
"pkgManagers": {
"rust": {
"version": true,
"getPublishedVersion": {
"use": "fetch:check",
"options": {
"url": "https://crates.io/api/v1/crates/${ pkg.pkg }/${ pkg.pkgFile.version }"
}
},
"publish": [
"cargo publish --no-verify --allow-dirty"
]
}
},
"packages": {
"core": {
"path": "./crates/tauri-plugin-core",
"manager": "rust"
},
"tauri": {
"path": "./crates/tauri-plugin-tauri",
"manager": "rust"
}
}
}

View File

@@ -0,0 +1,6 @@
---
"core": patch
"tauri": patch
---
Initial release.

6
.changes/pre.json Normal file
View File

@@ -0,0 +1,6 @@
{
"tag": "beta",
"changes": [
".changes/initial-release.md"
]
}

31
.changes/readme.md Normal file
View File

@@ -0,0 +1,31 @@
# Changes
##### via https://github.com/jbolda/covector
As you create PRs and make changes that require a version bump, please add a new markdown file in this folder. You do not note the version _number_, but rather the type of bump that you expect: major, minor, or patch. The filename is not important, as long as it is a `.md`, but we recommend that it represents the overall change for organizational purposes.
When you select the version bump required, you do _not_ need to consider dependencies. Only note the package with the actual change, and any packages that depend on that package will be bumped automatically in the process.
Use the following format:
```md
---
"package-a": patch
"package-b": minor
---
Change summary goes here
```
Summaries do not have a specific character limit, but are text only. These summaries are used within the (future implementation of) changelogs. They will give context to the change and also point back to the original PR if more details and context are needed.
Changes will be designated as a `major`, `minor` or `patch` as further described in [semver](https://semver.org/).
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards compatible manner, and
- PATCH version when you make backwards compatible bug fixes.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format, but will be discussed prior to usage (as extra steps will be necessary in consideration of merging and publishing).

18
.github/workflows/covector-status.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: covector status
on: [pull_request]
jobs:
covector:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # required for use of git history
- name: covector status
uses: jbolda/covector/packages/action@covector-v0.12
id: covector
with:
token: ${{ secrets.GITHUB_TOKEN }}
command: 'status'
comment: true

View File

@@ -0,0 +1,54 @@
name: version or publish
on:
push:
branches:
- dev
permissions:
# required for npm provenance
id-token: write
# required to create the GitHub Release
contents: write
# required for creating the Version Packages Release
pull-requests: write
jobs:
version-or-publish:
runs-on: ubuntu-latest
timeout-minutes: 65
outputs:
change: ${{ steps.covector.outputs.change }}
commandRan: ${{ steps.covector.outputs.commandRan }}
successfulPublish: ${{ steps.covector.outputs.successfulPublish }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # required for use of git history
- name: cargo login
run: cargo login ${{ secrets.ORG_CRATES_IO_TOKEN }}
- name: git config
run: |
git config --global user.name "${{ github.event.pusher.name }}"
git config --global user.email "${{ github.event.pusher.email }}"
- name: covector version or publish (publish when no change files present)
uses: jbolda/covector/packages/action@covector-v0.12
id: covector
env:
CARGO_AUDIT_OPTIONS: ${{ secrets.CARGO_AUDIT_OPTIONS }}
with:
token: ${{ secrets.GITHUB_TOKEN }}
command: "version-or-publish"
createRelease: true
recognizeContributors: true
- name: Create Pull Request With Versions Bumped
id: cpr
uses: peter-evans/create-pull-request@v6
if: steps.covector.outputs.commandRan == 'version'
with:
title: "Publish New Versions"
commit-message: "publish new versions"
labels: "version updates"
branch: "release"
body: ${{ steps.covector.outputs.change }}

View File

@@ -3,7 +3,6 @@ resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "2.0.0-beta.0"
authors = ["Tauri Programme within The Commons Conservancy"]
homepage = "https://tauri.app/"
repository = "https://github.com/tauri-apps/tauri-plugin-core"

View File

@@ -0,0 +1,5 @@
# Changelog
## \[2.0.0-beta.0]
- [\`\`](https://github.com/tauri-apps/reserved-plugins/commit/undefined) Initial release.

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-core"
version.workspace = true
version = "2.0.0-beta.0"
authors.workspace = true
homepage.workspace = true
repository.workspace = true

View File

@@ -0,0 +1,5 @@
# Changelog
## \[2.0.0-beta.0]
- [\`\`](https://github.com/tauri-apps/reserved-plugins/commit/undefined) Initial release.

View File

@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-tauri"
version.workspace = true
version = "2.0.0-beta.0"
authors.workspace = true
homepage.workspace = true
repository.workspace = true