Skip to content

Commit 15d7a3c

Browse files
committed
Added a changelog and put the version number on the About page
1 parent 86d9988 commit 15d7a3c

3 files changed

Lines changed: 13 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Change log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [v1.0.0-beta]
9+
10+
Initial beta launch of Abstract Play! We're happy with the core functionality, but we are looking for concrete feedback on how to make things better. Please be generous with your bug reports and suggestions, and please be patient with the bugs you will almost certainly encounter.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apfront",
3-
"version": "0.1.0",
3+
"version": "1.0.0-beta",
44
"description": "The official user client for Abstract Play",
55
"repository": {
66
"type": "git",

src/components/About.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React, { useEffect } from "react";
22
import { useTranslation } from "react-i18next";
33
import { addResource } from "@abstractplay/gameslib";
4+
import pkgInfo from "../../package.json";
45

56
function About(props) {
67
const { t, i18n } = useTranslation();
@@ -21,6 +22,7 @@ function About(props) {
2122
your opponent has moved. We specialize in offbeat, perfect information
2223
games without any element of luck.
2324
</p>
25+
<p style={{fontSize: "smaller", textAlign: "right"}}>Build: {pkgInfo.version}</p>
2426
</article>
2527
);
2628
}

0 commit comments

Comments
 (0)