Skip to content

Commit

Permalink
Bump version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mreishus committed Jan 20, 2020
1 parent 92b6177 commit a476877
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.2] - 2020-01-20

### Changed

- Dependency upgrades

## [0.3.1] - 2020-01-09

### Changed
Expand Down Expand Up @@ -45,7 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Initial release. Rough, but playable with 4 people.

[unreleased]: https://github.com/mreishus/spades/compare/v0.3.1...HEAD
[unreleased]: https://github.com/mreishus/spades/compare/v0.3.2...HEAD
[0.3.2]: https://github.com/mreishus/spades/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/mreishus/spades/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/mreishus/spades/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/mreishus/spades/compare/v0.2.0...v0.2.1
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=0.3.1 # Change in Lobby.tsx too, as well as changelog
VERSION=0.3.2 # Change in Lobby.tsx too, as well as changelog

# exit when any command fails
set -e
Expand Down
14 changes: 7 additions & 7 deletions frontend/src/features/lobby/Lobby.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ export const Lobby: React.FC = () => {
return (
<Container>
<div className="flex flex-wrap">
<div className="w-full lg:w-3/4 xl:w-4/6 mb-4">
<div className="w-full mb-4 lg:w-3/4 xl:w-4/6">
<div>
<h1 className="mb-4">Lobby</h1>
{isLoading && <div>Loading..</div>}
{isError && <div>Error..</div>}
<div className="mb-6">
<h3 className="font-semibold mb-2">New Game</h3>
<h3 className="mb-2 font-semibold">New Game</h3>
<div>
{isLoggedIn && (
<Button isPrimary onClick={() => setShowModal(true)}>
Create Room
</Button>
)}
{!isLoggedIn && (
<span className="text-gray-600 bg-gray-100 border rounded p-2">
<span className="p-2 text-gray-600 bg-gray-100 border rounded">
<Link to="/login" className="mr-1">
Log In
</Link>
Expand All @@ -60,12 +60,12 @@ export const Lobby: React.FC = () => {
</div>
</div>
<div className="mb-6">
<h3 className="font-semibold mb-2">Current Games</h3>
<h3 className="mb-2 font-semibold">Current Games</h3>
<div className="mb-4">
<LobbyTable rooms={rooms} />
</div>
</div>
<h3 className="font-semibold mb-2">About</h3>
<h3 className="mb-2 font-semibold">About</h3>
<div className="max-w-lg">
<p className="mb-2">
StarSpades is a{" "}
Expand All @@ -81,7 +81,7 @@ export const Lobby: React.FC = () => {
email me: <AdminContact />
</p>
<p className="text-sm text-gray-700">
Last Update: 2020-01-09. Version: 0.3.1.{" "}
Last Update: 2020-01-20. Version: 0.3.2.{" "}
<a
href="https://github.com/mreishus/spades/blob/master/CHANGELOG.md"
target="_blank"
Expand All @@ -98,7 +98,7 @@ export const Lobby: React.FC = () => {
/>
</div>
</div>
<div className="w-full lg:w-1/4 xl:w-2/6 mb-4">
<div className="w-full mb-4 lg:w-1/4 xl:w-2/6">
<div className="flex items-end h-full">
<Chat roomName="lobby" />
</div>
Expand Down

0 comments on commit a476877

Please sign in to comment.