Skip to content

Commit 43d439d

Browse files
committed
Release 2.5.0
1 parent 17ac7be commit 43d439d

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@
22

33
All versions upwards from `2.0.0` project will be documented in this file. For all older version, please check the [Releases](https://github.com/marcopixel/r6operators/releases/) tab.
44

5+
## 2.5.0 (2023-05-24)
6+
7+
### ✨ Features
8+
9+
- 🌟 Added Fenrir operator icon & metadata (thanks to @danielwerg, [557b359](https://github.com/marcopixel/r6operators/commit/557b359e7af2e9d761a67a58739e19c4ba6e41e2))
10+
- 🌟 Added Brava operator icon & metadata (thanks to @danielwerg, [afc28fa](https://github.com/marcopixel/r6operators/commit/afc28fa35fbb157e7e0d1d2ff1e04778dc45180f))
11+
12+
### 🐛 Bug Fixes
13+
14+
- 🛠 Updated operator metadata ([c457841](https://github.com/marcopixel/r6operators/commit/c4578413e73a71a1a172022e41db53003ebae618))
15+
16+
### 🚨 Breaking Changes
17+
18+
- **BREAKING**: Replaced `[op].unit` with `[op].org` and `[op].squad` ([c457841](https://github.com/marcopixel/r6operators/commit/c4578413e73a71a1a172022e41db53003ebae618))
19+
20+
## 2.4.0 (2022-12-07)
21+
22+
### ✨ Features
23+
24+
- 🌟 Added Solis operator icon & metadata - thanks to @danielwerg for making the icon and collecting the metadata ([b6b1741](https://github.com/marcopixel/r6operators/commit/b6b17413ee3a8cb4b3dc4328c2ab36062363208a))
25+
26+
## 2.3.0 (2022-09-06)
27+
28+
### ✨ Features
29+
30+
- 🌟 Added Grim operator icon & metadata ([b812269](https://github.com/marcopixel/r6operators/commit/b81226947cedca55a62ac3dfb5ebe1f62548dbc5))
31+
- 🛠 Added function to automatically calculate operator prices (by @danielwerg, [08989b6](https://github.com/marcopixel/r6operators/commit/08989b6666b2d1fc5fbe7fccdbb3b067fbdaea7a))
32+
33+
## 2.2.0 (2022-06-23)
34+
35+
### ✨ Features
36+
37+
- 🌟 Added Sens operator icon & metadata ([3132a88](https://github.com/marcopixel/r6operators/commit/3132a88e0d8f3b4dd4e7fd1acfb7fa1040651f99))
38+
39+
### 🐛 Bug Fixes
40+
41+
- 🛠 Updated operator prices + glaz rating (by @danielwerg, [6eaf958](https://github.com/marcopixel/r6operators/commit/6eaf958e24fcaba0b01ba5be7f351348606a867c))
42+
543
## 2.1.0 (2022-03-16)
644

745
### ✨ Features

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ r6operators.alibi
3737
// id: 'alibi',
3838
// name: 'Alibi',
3939
// role: 'Defender',
40-
// unit: 'GIS',
40+
// org: 'GIS',
41+
// squad: 'VIPERSTRIKE',
4142
// ratings: {
4243
// health: 1,
4344
// speed: 3,
@@ -95,7 +96,8 @@ r6operators.alibi
9596
// id: 'alibi',
9697
// name: 'Alibi',
9798
// role: 'Defender',
98-
// unit: 'GIS',
99+
// org: 'GIS',
100+
// squad: 'VIPERSTRIKE',
99101
// ratings: {
100102
// health: 1,
101103
// speed: 3,
@@ -187,6 +189,7 @@ Caught a mistake or want to contribute to the documentation? [Edit this page on
187189
- [@colebemis](https://github.com/colebemis) for his work on [feather](https://github.com/feathericons/feather), which gave me an awesome reference for this project.
188190
- [@dtSniper](https://twitter.com/sniperdt) for creating the IQ, Thatcher, Fuze, Glaz, Bandit, Kapkan, Tachanka, Pulse, Sledge and Doc icons.
189191
- [@joeyfjj](https://twitter.com/joeyfjj) for creating the Goyo, Mute, Smoke, Jäger and Blitz icons.
192+
- [@danielwerg](https://github.com/danielwerg/) for creating the Fenrir, Brava and Solis icons and his awesome price calculator function.
190193
- [@LaxisB](https://github.com/LaxisB/), [@NaughtyMuppet](https://github.com/NaughtyMuppet) & [@danielwerg](https://github.com/danielwerg) for general help on this project. <3
191194

192195
## License

scripts/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const DIST_DIR = path.resolve(`./dist`)
88
const ENTRY_FILE = path.resolve("./src/index.ts")
99
const DECLARATION_FILE = path.resolve("./src/types/index.d.ts")
1010

11-
const CURRENT_SEASON = "Y7S4"
11+
const CURRENT_SEASON = "Y8S2"
1212

1313
const SVGO_PLUGINS: PluginConfig[] = [
1414
// "cleanupIDs" plugin is added at the build-optimized-svg script directly

0 commit comments

Comments
 (0)