Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing version in dev #1055

Merged
merged 3 commits into from
Apr 4, 2024
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
5 changes: 3 additions & 2 deletions ci/HashtopolisTest.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ abstract class HashtopolisTest {
"0.13.0" => "c7036800be5b2e21542df0fa9bd4d19ebf7ecdf3",
"0.13.1" => "fc4b5226c1d36dc0197f4d17d216298972055c09",
"0.14.0" => "0af7193310c9c1f37a274578e159ab3ae0a6caad",
"0.14.1" => "375f2ce022c4b3e0780abf9dcca1e6af8e966c1a"
"0.14.1" => "375f2ce022c4b3e0780abf9dcca1e6af8e966c1a",
"0.14.2" => "d397e4b8ec1d2591b93fa44c8660edc314401da5"
];

public function initAndUpgrade($fromVersion) {
Expand Down Expand Up @@ -239,4 +240,4 @@ protected function deleteFileIfExists($name) {
}
return true;
}
}
}
7 changes: 5 additions & 2 deletions doc/changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# v0.14.1 -> x.x.x
# v0.14.1 -> v0.14.2

## Tech Preview New API
Release 0.14.2 comes with an update to the tech preview of APIv2. Be aware, it is a preview, it contains bugs and it will change; To use it, please see https://github.com/hashtopolis/server/wiki/Installation.

## Bugfixes
- Setting maxAgent after creating doesn't update the maxAgents of the taskwrapper. This only causes issues when the maxAgents was set at creation time. #1013

# v0.14.0 -> 0.14.1
# v0.14.0 -> v0.14.1

## Tech Preview New API
Release 0.14.1 comes with an update to the tech preview of APIv2. Be aware, it is a preview, it contains bugs and it will change; To use it, please see https://github.com/hashtopolis/server/wiki/Installation.
Expand Down
2 changes: 1 addition & 1 deletion src/inc/info.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

$VERSION = "0.14.1";
$VERSION = "0.14.2";
$BUILD = "repository";
$HOST = @$_SERVER['HTTP_HOST'];
if (strpos($HOST, ":") !== false) {
Expand Down
Loading