Skip to content

Commit 7fc5352

Browse files
committed
release: 0.3.8
1 parent ea64b61 commit 7fc5352

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

CHANGELOG.md

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

3+
## 0.3.8
4+
5+
- Feature: add new denominator option `scored` for `RankSeriesRulePresetICPC`
6+
37
## 0.3.7
48

59
- Feature: add `rankingTimePrecision` and `rankingTimeRounding` field for SorterICPC config

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.7`
7+
Version: `0.3.8` (updated on 2025-06-12)
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.7",
3+
"version": "0.3.8",
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.7',
5+
version: '0.3.8',
66
remarks: 'This is a demo ranklist.',
77
contributors: ['bLue <mail@example.com> (https://example.com/)'],
88
contest: {

index.d.ts

Lines changed: 1 addition & 1 deletion
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.7';
7+
export type Version = '0.3.8';
88

99
//#region common
1010

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.7",
3+
"version": "0.3.8",
44
"description": "Standard Ranklist",
55
"types": "index.d.ts",
66
"scripts": {

0 commit comments

Comments
 (0)