Skip to content

Commit 656e9b3

Browse files
committed
release: 0.3.9
1 parent c9e2c2b commit 656e9b3

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 0.3.9
4+
5+
- Feature: add new `byMarker` filter option for `RankSeriesRulePresetICPC`
6+
- Change: limit the user fields that can be filtered and grouped to `id`, `name` and `organization`
7+
38
## 0.3.8
49

510
- Feature: add new denominator option `scored` for `RankSeriesRulePresetICPC`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Standard Ranklist (srk) is a json format to describe many kinds of ranklists lik
44

55
With srk, most of programming contest ranklists can be described in a standard format. It's easy to customize display style with different renderers and share everywhere.
66

7-
Version: `0.3.8` (updated on 2025-06-12)
7+
Version: `0.3.9` (updated on 2025-06-23)
88

99
## Files
1010

demo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"type": "general",
3-
"version": "0.3.8",
3+
"version": "0.3.9",
44
"remarks": "This is a demo ranklist.",
55
"contributors": [
66
"bLue <mail@example.com> (https://example.com/)"

demo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as srk from '.';
22

33
const ranklist: srk.Ranklist = {
44
type: 'general',
5-
version: '0.3.8',
5+
version: '0.3.9',
66
remarks: 'This is a demo ranklist.',
77
contributors: ['bLue <mail@example.com> (https://example.com/)'],
88
contest: {

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Copyright (c) algoUX. All rights reserved.
44
***************************************************************************** */
55

66
export type Type = 'general';
7-
export type Version = '0.3.8';
7+
export type Version = '0.3.9';
88

99
//#region common
1010

@@ -468,7 +468,7 @@ export interface RankSeriesRulePresetICPC {
468468
/**
469469
* The marker ID to filter users.
470470
* If specified, only users with this marker (exact match) will be included.
471-
* @since NEXT
471+
* @since 0.3.9
472472
*/
473473
byMarker?: string;
474474
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algoux/standard-ranklist",
3-
"version": "0.3.8",
3+
"version": "0.3.9",
44
"description": "Standard Ranklist",
55
"types": "index.d.ts",
66
"scripts": {

0 commit comments

Comments
 (0)