Skip to content

Commit

Permalink
Merge branch 'release/1.3.0-alpha.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Nov 24, 2024
2 parents 1685c37 + d4ae3f7 commit 931ff97
Show file tree
Hide file tree
Showing 18 changed files with 313 additions and 388 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:

steps: # The sequence of tasks that make up a job.
- name: Checking out repository code
uses: actions/checkout@v4.2.1 # Action for checking out a repo.
uses: actions/checkout@v4.2.2 # Action for checking out a repo.

# Cache dependencies to speed up builds
- name: Cache cargo dependencies
uses: actions/cache@v4.1.1
uses: actions/cache@v4.1.2
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -85,13 +85,13 @@ jobs:
steps:
# Checkout the repository code
- name: Checkout code
uses: actions/checkout@v4.2.1
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0 # Fetches all history for all branches and tags

# Generate a changelog for the new release using Git
- name: Generate a changelog
uses: orhun/git-cliff-action@v4.3.0
uses: orhun/git-cliff-action@v4.4.0
id: git-cliff
with:
config: cliff.toml # The configuration file for git-cliff
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v4.2.1
uses: actions/checkout@v4.2.2
with:
ref: ${{ github.event.release.tag_name }}

Expand All @@ -28,7 +28,7 @@ jobs:

# Cache dependencies to speed up builds
- name: Cache cargo dependencies
uses: actions/cache@v4.1.1
uses: actions/cache@v4.1.2
with:
path: |
~/.cargo/bin/
Expand All @@ -46,7 +46,7 @@ jobs:
override: true

- name: Deploy to Workers
uses: cloudflare/wrangler-action@v3.9.0
uses: cloudflare/wrangler-action@v3.12.1
with:
accountId: ${{ secrets.CF_ACCOUNT_ID }}
apiToken: ${{ secrets.CF_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it
- name: Checkout Repository Code
uses: actions/checkout@v4.2.1
uses: actions/checkout@v4.2.2

# This step uses the Git Flow Action to create PRs based on branch types
- name: Execute Git Flow Action
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## [1.3.0-alpha.1] - 2024-11-24

### Refactor

- Replace `unwrap` with `?` operator

### Miscellaneous Tasks

- Update logging setup

## [1.3.0-alpha.0] - 2024-10-10

### Bug Fixes
Expand Down
Loading

0 comments on commit 931ff97

Please sign in to comment.