Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleitnick committed Sep 25, 2023
1 parent 1de409b commit e6c94bd
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Aftman
uses: ok-nick/setup-aftman@v0
- name: Lint
Expand All @@ -26,8 +26,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: JohnnyMorganz/stylua-action@v2
- uses: JohnnyMorganz/stylua-action@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: v0.17.1
version: v0.18.2
args: --check ./src
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
name: Build and deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: 18
- run: npm i -g moonwave@latest
- name: Publish
run: |
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Aftman
uses: ok-nick/setup-aftman@v0
- name: Publish release to Wally
Expand Down Expand Up @@ -43,7 +43,8 @@ jobs:
remodel run publish.lua
- name: Get version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
# run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Changelog
run: python3 last_changelog.py CHANGELOG.md > log.md
- name: Release
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.5.2

- Update dependencies
- Prevent KnitServer from destroying itself in edit mode

## 1.5.1

- Bugfix for main Knit init file
Expand Down
2 changes: 1 addition & 1 deletion aftman.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tools = { rojo = "rojo-rbx/rojo@7.2.1" , wally = "UpliftGames/[email protected].1" , selene = "Kampfkarren/[email protected]" , stylua = "JohnnyMorganz/StyLua@0.17.1" , remodel = "rojo-rbx/[email protected]" }
tools = { rojo = "rojo-rbx/rojo@7.3.0" , wally = "UpliftGames/[email protected].2" , selene = "Kampfkarren/[email protected]" , stylua = "JohnnyMorganz/StyLua@0.18.2" , remodel = "rojo-rbx/[email protected]" }
2 changes: 1 addition & 1 deletion src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if RunService:IsServer() then
return require(script.KnitServer)
else
local KnitServer = script:FindFirstChild("KnitServer")
if KnitServer then
if KnitServer and not RunService:IsEdit() then

This comment has been minimized.

Copy link
@ambergamefam

ambergamefam Sep 26, 2023

This causes an error at runtime. Please remove
image

KnitServer:Destroy()
end
return require(script.KnitClient)
Expand Down
2 changes: 1 addition & 1 deletion src/wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "sleitnick/knit"
description = "Knit is a lightweight game framework"
version = "1.5.1"
version = "1.5.2"
license = "MIT"
registry = "https://github.com/UpliftGames/wally-index"
realm = "shared"
Expand Down
2 changes: 1 addition & 1 deletion src/wally_bundle.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ Signal = "sleitnick/signal@^1"
Streamable = "sleitnick/streamable@^1"
TableUtil = "sleitnick/table-util@^1"
Timer = "sleitnick/timer@^1"
Trove = "sleitnick/trove@^0.5"
Trove = "sleitnick/trove@^1"
Promise = "evaera/promise@^4"

0 comments on commit e6c94bd

Please sign in to comment.