Skip to content

Commit 15d432b

Browse files
committed
Remove ALMA references
1 parent 5823f00 commit 15d432b

File tree

4 files changed

+7
-37
lines changed

4 files changed

+7
-37
lines changed

β€Ž.github/workflows/publish.ymlβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,10 @@ jobs:
178178
from datetime import datetime, timezone
179179
import os
180180
181+
excluded_urls = {
182+
"https://github.com/thatfactory/alma.git",
183+
}
184+
181185
def read_pairs(path):
182186
d = defaultdict(list)
183187
if not os.path.exists(path):
@@ -188,6 +192,8 @@ jobs:
188192
if not line:
189193
continue
190194
url, ver = line.split(" ", 1)
195+
if url in excluded_urls:
196+
continue
191197
d[url].append(ver)
192198
for k in d:
193199
d[k] = sorted(set(d[k]))

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,14 @@ _Triggered by_ `thatfactory/progresskit` `0.1.0`
77
### Removed
88
- _(none)_
99

10-
---
11-
## 2026-04-07 10:59 UTC β€” revision 38
12-
_Triggered by_ `thatfactory/alma` `0.1.3`
13-
14-
### Added
15-
- _(none)_
16-
17-
### Removed
18-
- _(none)_
19-
2010
---
2111
## 2026-04-07 10:53 UTC β€” revision 37
2212

2313
### Added
24-
- **https://github.com/thatfactory/alma.git**: `0.1.3`
2514
- **https://github.com/thatfactory/progresskit.git**: `0.1.0`
2615

2716
### Removed
28-
- **https://github.com/thatfactory/alma.git**: `0.1.0`
17+
- _(none)_
2918

3019
---
3120
## 2026-03-04 16:50 UTC β€” revision 36
@@ -37,16 +26,6 @@ _Triggered by_ `thatfactory/device` `0.2.2`
3726
### Removed
3827
- _(none)_
3928

40-
---
41-
## 2026-03-04 16:33 UTC β€” revision 35
42-
_Triggered by_ `thatfactory/alma` `0.1.2`
43-
44-
### Added
45-
- **https://github.com/thatfactory/alma.git**: `0.1.2`
46-
47-
### Removed
48-
- _(none)_
49-
5029
---
5130
## 2026-03-04 16:25 UTC β€” revision 34
5231
_Triggered by_ `thatfactory/device` `0.2.1`
@@ -57,22 +36,11 @@ _Triggered by_ `thatfactory/device` `0.2.1`
5736
### Removed
5837
- **https://github.com/thatfactory/device.git**: `0.1.0`, `0.1.1`
5938

60-
---
61-
## 2026-03-04 13:46 UTC β€” revision 33
62-
_Triggered by_ `thatfactory/alma` `0.1.1`
63-
64-
### Added
65-
- _(none)_
66-
67-
### Removed
68-
- _(none)_
69-
7039
---
7140
## 2026-03-04 13:40 UTC β€” revision 32
7241
_Triggered by_ `thatfactory/device` `0.2.0`
7342

7443
### Added
75-
- **https://github.com/thatfactory/alma.git**: `0.1.1`
7644
- **https://github.com/thatfactory/device.git**: `0.2.0`
7745

7846
### Removed

β€ŽREADME.mdβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
A collection of Swift Packages by ThatFactory.
1212

1313
# Packages
14-
- πŸ‘Ύ [ALMA](https://github.com/thatfactory/alma): Game Engine for the Apple ecosystem.
1514
- πŸ“’ [AppLogger](https://github.com/thatfactory/applogger): Wrapper around Apple's Swift logging APIs.
1615
- πŸ”€ [CGKStateMachine](https://github.com/thatfactory/cgkstatemachine): Allows `GKState` changes to be observed via `Combine`.
1716
- πŸŒƒ [CSKScene](https://github.com/thatfactory/cskscene): Custom `SKScene` with debugging features and game controller observing capabilities.

β€Žpackages.jsonβ€Ž

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,6 @@
4545
"writing"
4646
],
4747
"packages": [
48-
{
49-
"url": "https://github.com/thatfactory/alma.git"
50-
},
5148
{
5249
"url": "https://github.com/thatfactory/applogger.git"
5350
},

0 commit comments

Comments
Β (0)