Skip to content

Commit

Permalink
Bump v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YetAnotherClown committed Jul 11, 2024
1 parent 1c43e84 commit fdfe525
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 45 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0] - 2024-07-11

### Added

- Documentation for using Squash 2.0.0
Expand All @@ -31,6 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Set exclusions in `selene.toml`
- Exclude docs in `tsconfig.json`
- Changed what is included in Wally and NPM package releases
- Luau types for Middleware are no longer strict due to inaccuracy of the type system
- Typescript types for Middleware have been improved to allow for more use cases

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ See the [CONTRIBUTING.md](CONTRIBUTING.md) file for a detailed guide on contribu
Add YetAnotherNet to your project with [Wally] by adding the following to your ``wally.toml`` file:
```toml
[dependencies]
YetAnotherNet = "yetanotherclown/yetanothernet@0.8.0"
YetAnotherNet = "yetanotherclown/yetanothernet@0.9.0"
```

> [!NOTE]
Expand Down
4 changes: 2 additions & 2 deletions docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Since it's encouraged to use ECS with YetAnotherNet, though not required, we sug

```toml
[dependencies]
YetAnotherNet = "yetanotherclown/yetanothernet@0.8.0"
YetAnotherNet = "yetanotherclown/yetanothernet@0.9.0"
```

Note: Wally does not export types automatically, if you wish to use Strict Typing with YetAnotherNet, install [Wally Package Types](https://github.com/JohnnyMorganz/wally-package-types) with Aftman or Foreman.
Expand All @@ -53,5 +53,5 @@ Note: Wally does not export types automatically, if you wish to use Strict Typin
You can find [YetAnotherNet on NPM](https://www.npmjs.com/package/@rbxts/yetanothernet).

```json
"@rbxts/yetanothernet": "0.8.0"
"@rbxts/yetanothernet": "0.9.0"
```
83 changes: 42 additions & 41 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,44 @@
{
"name": "@rbxts/yetanothernet",
"version": "0.8.0",
"description": "A Networking Library, inspired by BridgeNet2 & Bevy_Renet, made for ECS.",
"homepage": "https://yetanotherclown.github.io/YetAnotherNet/",
"repository": {
"type": "github",
"url": "https://github.com/YetAnotherClown/YetAnotherNet"
},
"main": "lib",
"scripts": {
"build": "rbxtsc --rojo typescript.project.json",
"watch": "rbxtsc --rojo typescript.project.json -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"Networking",
"ECS",
"Matter"
],
"author": "YetAnotherClown",
"license": "MIT",
"typings": "lib/index.d.ts",
"files": [
"lib/!(__*__)"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.2.0-types.0",
"@rbxts/types": "^1.0.737",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-roblox-ts": "^0.0.36",
"prettier": "^3.1.1",
"roblox-ts": "^2.2.0",
"typescript": "^5.3.3"
}
"name": "@rbxts/yetanothernet",
"version": "0.9.0",
"description": "A Networking Library, inspired by BridgeNet2 & Bevy_Renet, made for ECS.",
"homepage": "https://yetanotherclown.github.io/YetAnotherNet/",
"repository": {
"type": "github",
"url": "https://github.com/YetAnotherClown/YetAnotherNet"
},
"main": "lib",
"scripts": {
"build": "rbxtsc --rojo typescript.project.json",
"watch": "rbxtsc --rojo typescript.project.json -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"Networking",
"ECS",
"Matter"
],
"author": "YetAnotherClown",
"license": "MIT",
"typings": "lib/index.d.ts",
"files": [
"lib/!(__*__)",
"lib/!(__*__)/*"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.2.0-types.0",
"@rbxts/types": "^1.0.737",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-roblox-ts": "^0.0.36",
"prettier": "^3.1.1",
"roblox-ts": "^2.2.0",
"typescript": "^5.3.3"
}
}
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "yetanotherclown/yetanothernet"
description = "A Data-Driven Networking Library, inspired by BridgeNet2 & Bevy_Renet, made for the Matter ECS."
version = "0.8.0"
version = "0.9.0"
license = "MIT"
authors = ["YetAnotherClown"]
realm = "shared"
Expand Down

0 comments on commit fdfe525

Please sign in to comment.