Skip to content

Commit

Permalink
release: 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamerblue committed Dec 10, 2023
1 parent 395208f commit 13f182e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 0.3.4

- Feature: support new sorter type `score`
- Feature: add new known solution result enum `NOUT` which means `No Output`

## 0.3.3

- Feature: add `filter` option for series preset `RankSeriesRulePresetICPC`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Standard Ranklist (srk) is a json format to describe many kinds of ranklists lik

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.

Version: `0.3.3`
Version: `0.3.4`

## Files

Expand Down
2 changes: 1 addition & 1 deletion demo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "general",
"version": "0.3.3",
"version": "0.3.4",
"remarks": "This is a demo ranklist.",
"contributors": [
"bLue <mail@example.com> (https://example.com/)"
Expand Down
2 changes: 1 addition & 1 deletion demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as srk from '.';

const ranklist: srk.Ranklist = {
type: 'general',
version: '0.3.3',
version: '0.3.4',
remarks: 'This is a demo ranklist.',
contributors: ['bLue <mail@example.com> (https://example.com/)'],
contest: {
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright (c) algoUX. All rights reserved.
***************************************************************************** */

export type Type = 'general';
export type Version = '0.3.3';
export type Version = '0.3.4';

//#region common

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algoux/standard-ranklist",
"version": "0.3.3",
"version": "0.3.4",
"description": "Standard Ranklist",
"types": "index.d.ts",
"scripts": {
Expand Down

0 comments on commit 13f182e

Please sign in to comment.