Skip to content

Commit

Permalink
Merge pull request #97 from appwrite/style-updates-for-release-1.4
Browse files Browse the repository at this point in the history
updates: release 1.4
  • Loading branch information
TorstenDittmann authored Nov 16, 2023
2 parents a2e9f11 + 943e2c5 commit 9bde08d
Show file tree
Hide file tree
Showing 405 changed files with 3,175 additions and 390 deletions.
6 changes: 6 additions & 0 deletions .changeset/brown-shirts-judge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": patch
"@appwrite.io/pink": patch
---

Fix desynced icons
6 changes: 6 additions & 0 deletions .changeset/neat-cats-cough.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": minor
"@appwrite.io/pink": minor
---

add divider
13 changes: 12 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"mode": "pre",
"tag": "sl10",
"tag": "next",
"initialVersions": {
"@appwrite.io/kitchensink": "0.0.0",
"@appwrite.io/pink-design": "0.0.0-rc1",
Expand All @@ -9,6 +9,17 @@
"@appwrite.io/pink": "0.0.6"
},
"changesets": [
"brown-shirts-judge",
"neat-cats-cough",
"pretty-feet-return",
"pretty-gorillas-cough",
"rotten-carpets-joke",
"sweet-turtles-hope",
"ten-pandas-share",
"ten-snakes-teach",
"three-waves-cheer",
"two-pans-shake",
"witty-bulldogs-repeat",
"dirty-hounds-do"
]
}
6 changes: 6 additions & 0 deletions .changeset/pretty-feet-return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": minor
"@appwrite.io/pink": minor
---

Fix avatar icons
6 changes: 6 additions & 0 deletions .changeset/pretty-gorillas-cough.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": minor
"@appwrite.io/pink": minor
---

Fix switch button
6 changes: 6 additions & 0 deletions .changeset/rotten-carpets-joke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": patch
"@appwrite.io/pink": patch
---

fixes for 1.4.x release
6 changes: 6 additions & 0 deletions .changeset/sweet-turtles-hope.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": minor
"@appwrite.io/pink": minor
---

Fix: font cropping
6 changes: 6 additions & 0 deletions .changeset/ten-pandas-share.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": patch
"@appwrite.io/pink": patch
---

fix desync issue
6 changes: 6 additions & 0 deletions .changeset/ten-snakes-teach.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": patch
"@appwrite.io/pink": patch
---

patch
6 changes: 6 additions & 0 deletions .changeset/three-waves-cheer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": patch
"@appwrite.io/pink": patch
---

pre-release patch
6 changes: 6 additions & 0 deletions .changeset/two-pans-shake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": minor
"@appwrite.io/pink": minor
---

Add bun icon
6 changes: 6 additions & 0 deletions .changeset/witty-bulldogs-repeat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@appwrite.io/pink-icons": minor
"@appwrite.io/pink": minor
---

Changes for 1.4 from other branch
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- main
- pre/** # pre-release branches
- style-level-* # style-level branches
- style-updates-for-release-1.4 # BRUTEFORCE

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand Down
37 changes: 37 additions & 0 deletions VERSIONING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Versioning

Versioning consists in 3 steps. Specifying a bump (which can be `patch`, `minor` or `major`), updating package versions, and releasing.

## Automatic PR flow

### Bumping

To specify a new bump in the package versions, you can use the `bump-x` script, where `x` is the bump type.

This will automatically generate a [changeset](https://github.com/changesets/changesets). A changeset is a file that contains the bump intent, and a list of all commits that will be included in the release.

### Releasing

After bumping, you should commit and push the changesets. This will trigger a GitHub action that will automatically create a release PR to your branch. This PR will contain all the changesets that have been pushed since the last release.

## CLI flow

### Bumping

To specify a new bump in the package versions, you can use the `bump-x` script, where `x` is the bump type.

This will automatically generate a [changeset](https://github.com/changesets/changesets). A changeset is a file that contains the bump intent, and a list of all commits that will be included in the release.

### Updating package versions

To apply the bump intents, and change the package versions accordingly, you can use the `version` script. This will automatically update all the `CHANGELOG.md` files, and the `package.json` files.

### Releasing

If everything looks good, you can release the new version using the `release` script. This will automatically create a new git tag, and publish the packages to npm. Don't forget to commit!

## Pre-releasing

Sometimes, you will want to release a pre-release version. Firstly, be sure to be in a branch that is not `main`. Then, you can use the `pre` script, which will enter the current branch into pre-release mode. While in pre-release mode, all other actions are the same, but the version will be suffixed with `-next.X`.

Before merging this pre-release branch into `main`, be sure to exit the pre-release mode using the `pre` script again.
Loading

2 comments on commit 9bde08d

@vercel
Copy link

@vercel vercel bot commented on 9bde08d Nov 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 9bde08d Nov 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.