Skip to content

Commit 7114c23

Browse files
committed
release: 0.3.6
1 parent a22cd63 commit 7114c23

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## 0.3.5
3+
## 0.3.6
44

55
- Feature: add `markers` field for user and deprecate `marker` field
66

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.5`
7+
Version: `0.3.6`
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.5",
3+
"version": "0.3.6",
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.5',
5+
version: '0.3.6',
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.5';
7+
export type Version = '0.3.6';
88

99
//#region common
1010

@@ -186,7 +186,7 @@ export interface User {
186186
/**
187187
* Marker ids to which the user belongs.
188188
* @defaultValue Ignored by renderer.
189-
* @since NEXT
189+
* @since 0.3.6
190190
*/
191191
markers?: string[];
192192
}

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

0 commit comments

Comments
 (0)