@axpecter/lync 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  ```toml
14
14
  [dependencies]
15
- Lync = "axp3cter/lync@1.3.0"
15
+ Lync = "axp3cter/lync@1.3.1"
16
16
  ```
17
17
 
18
18
  **npm (roblox-ts)**
@@ -35,8 +35,8 @@ Or grab the `.rbxm` from [releases](https://github.com/Axp3cter/Lync/releases/la
35
35
  | | What it does |
36
36
  |:---------|:------------|
37
37
  | `Lync.start()` | Sets up transport. Server creates remotes, client connects. Call once after all definitions. |
38
- | `Lync.version` | `"1.3.0"` |
39
- | `Lync.VERSION` | `"1.3.0"` |
38
+ | `Lync.version` | `"1.3.1"` |
39
+ | `Lync.VERSION` | `"1.3.1"` |
40
40
 
41
41
  ## Packets
42
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axpecter/lync",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Buffer networking for Roblox. Delta compression, XOR framing, built-in security.",
5
5
  "main": "src/init.luau",
6
6
  "types": "src/index.d.ts",
package/src/init.luau CHANGED
@@ -68,8 +68,8 @@ local function start (): ()
68
68
  end
69
69
 
70
70
  local Lync = {
71
- VERSION = "1.3.0",
72
- version = "1.3.0",
71
+ VERSION = "1.3.1",
72
+ version = "1.3.1",
73
73
 
74
74
  -- Lifecycle
75
75
  start = start,
@@ -158,4 +158,5 @@ local Lync = {
158
158
  queryPendingCount = Query.pendingCount,
159
159
  }
160
160
 
161
+ Lync.default = Lync
161
162
  return table.freeze (Lync)