Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Versioning](https://semver.org/spec/v2.0.0.html).
This file only documents changes in the site engine, not any changes in the
hosting infrastructure.

## [1.2.1] - 2024-10-18
### Removed
- Link to Gitter.

## [1.2.0] - 2023-12-18
### Changed
- The application now uses .NET 8.0.
Expand Down Expand Up @@ -162,4 +166,5 @@ Initial version of the application, written in Scala using Spray framework.
[1.0.2]: https://github.com/codingteam/codingteam.org.ru/compare/1.0.1...v1.0.2
[1.1.0]: https://github.com/codingteam/codingteam.org.ru/compare/v1.0.2...v1.1.0
[1.2.0]: https://github.com/codingteam/codingteam.org.ru/compare/v1.1.0...v1.2.0
[Unreleased]: https://github.com/codingteam/codingteam.org.ru/compare/v1.2.0...HEAD
[1.2.1]: https://github.com/codingteam/codingteam.org.ru/compare/v1.2.0...v1.2.1
[Unreleased]: https://github.com/codingteam/codingteam.org.ru/compare/v1.2.1...HEAD
2 changes: 1 addition & 1 deletion Codingteam.Site/Codingteam.Site.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>1.2.0</Version>
<Version>1.2.1</Version>
</PropertyGroup>

<Target Name="DownloadLogo" BeforeTargets="Build"
Expand Down
5 changes: 0 additions & 5 deletions Codingteam.Site/Views/Home/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@
<i class="fa-li fa fa-lightbulb-o"></i> XMPP conference (backup channel)
</a>
</li>
<li>
<a href="https://gitter.im/codingteam">
<i class="fa-li fa fa-users"></i> Gitter room
</a>
</li>
<li>
<a href="https://bitbucket.org/codingteam">
<i class="fa-li fa fa-bitbucket"></i> Bitbucket team
Expand Down
2 changes: 1 addition & 1 deletion Codingteam.Site/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div id="main" role="main">
@RenderBody()
</div>
<footer>© 2023 <a href="https://github.com/codingteam/codingteam.org.ru">codingteam</a></footer>
<footer>© 2024 <a href="https://github.com/codingteam/codingteam.org.ru">codingteam</a></footer>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)
=====================

Copyright (c) 2023 codingteam.org.ru contributors
Copyright (c) 2024 codingteam.org.ru contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion MAINTAINERSHIP.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Release
-------
To release a new version:
1. Update the copyright year in the `LICENSE.md`, if required.
2. Update the copyright year inside of the `<footer>` element of the `Codingteam.Site/Views/Shared/_Layout.cshtml`, if required.
2. Update the copyright year inside the `<footer>` element of the `Codingteam.Site/Views/Shared/_Layout.cshtml`, if required.
3. Choose a new version according to [Semantic Versioning][semver]. It should consist of three numbers (i.e. `1.0.0`).
4. Make sure there's a properly formed version entry in the `CHANGELOG.md`.
5. Update the `<Version>` property in the `Codingteam.Site/Codingteam.Site.fsproj` file.
Expand Down
Loading