summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
blob: 827f9fcb36375399ea5e5b23f3012a45561bfa0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.5.2](https://github.com/ansg191/pandascore/compare/v0.5.1...v0.5.2) - 2024-09-18

### Fixed

- incorrect return type in team endpoints

## [0.5.1](https://github.com/ansg191/pandascore/compare/v0.5.0...v0.5.1) - 2024-09-18

### Added

- add more team endpoints

## [0.5.0](https://github.com/ansg191/pandascore/compare/v0.4.0...v0.5.0) - 2024-09-18

### Added

- add `PaginatedEndpoint` trait
- convert `ListMatches` to multi list endpoint
- [**breaking**] refactor `match` to `matches`

## [0.4.0](https://github.com/ansg191/pandascore/compare/v0.3.3...v0.4.0) - 2024-09-18

### Added

- add `non_exhaustive` attribute to all models
- add `current_team` field to `Player`

### Fixed

- make all `inner` fields `pub`

### Other

- remove debug `eprintln!`

## [0.3.3](https://github.com/ansg191/pandascore/compare/v0.3.2...v0.3.3) - 2024-09-14

### Fixed

- fix Winner parsing bug caused by mixed fields

## [0.3.2](https://github.com/ansg191/pandascore/compare/v0.3.1...v0.3.2) - 2024-09-13

### Fixed

- add underscore to `KEY_REGEX`
- pagination `Links` header parsing bug

## [0.3.1](https://github.com/ansg191/pandascore/compare/v0.3.0...v0.3.1) - 2024-09-12

### Other

- move transport to subtrait
- *(deps)* bump EmbarkStudios/cargo-deny-action from 1 to 2
- ignore dependabot commits via commitlint cfg

## [0.3.0](https://github.com/ansg191/pandascore/compare/v0.2.0...v0.3.0) - 2024-09-08

### Added

- [**breaking**] switch back to `bon`

### Other

- *(deps)* add `cargo-deny`

## [0.2.0](https://github.com/ansg191/pandascore/compare/v0.1.1...v0.2.0) - 2024-09-02

### Added
- add MSRV of 1.75.0

### Other
- add MSRV test
- switch from `LazyLock` to `OnceLock`
- Merge pull request [#13](https://github.com/ansg191/pandascore/pull/13) from ansg191/typed-builder
- switch to `typed_builder`

## [0.1.1](https://github.com/ansg191/pandascore/compare/v0.1.0...v0.1.1) - 2024-09-02

### Fixed
- *(clippy)* make clippy stricter

### Other
- add various documentation
- remove `unused_crate_dependencies` lint
- release

## [0.1.0](https://github.com/ansg191/pandascore/releases/tag/v0.1.0) - 2024-09-02

### Added
- *(all)* add tournament endpoints
- *(rl)* add Rocket League endpoints
- *(all)* add `Series` endpoints
- *(lol)* add `ListTeams` endpoint
- *(lol)* add `ListTournament` endpoint
- *(lol)* add `GetSpell` endpoint
- *(lol)* add `ListSpells` endpoint
- *(lol)* add `ListSeries` endpoint
- *(lol)* add `ListPlayers` endpoint
- *(lol)* add `ListMatches` endpoint
- *(lol)* add `ListLeagues` endpoint
- *(lol)* add `GetItem` endpoint
- *(lol)* add `ListItems` endpoint

### Other
- add `release-plz`
- switch to bon
- make all endpoints use macros
- *(lol)* convert to `multi_game_endpoints`
- *(lol)* convert lol to use `game_endpoints`
- update LoL features
- *(lol)* update LoL matches feature
- *(lol)* update LoL league feature
- update features docs
- Remove development files
- add commitlint
- add pre-commit
- Update LoL Champions status in docs
- Add `no_run` to lib docs example code
- Disable `fail-fast` for test CI
- Fix linter problems
- Add CI
- Initial Commit