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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hemlang/hpm",
"version": "1.0.8",
"version": "1.1.0",
"description": "Hemlock Package Manager - A package manager for the Hemlock programming language",
"author": "Hemlock Team",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/github.hml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn github_request(url: string) {
}

headers.push("Accept: application/vnd.github.v3+json");
headers.push("User-Agent: hpm/1.0.7");
headers.push("User-Agent: hpm/1.1.0");

let retries = 0;
let backoff_ms = INITIAL_BACKOFF_MS;
Expand Down Expand Up @@ -278,7 +278,7 @@ export fn repo_exists(owner: string, repo: string): bool {
}

headers.push("Accept: application/vnd.github.v3+json");
headers.push("User-Agent: hpm/1.0.7");
headers.push("User-Agent: hpm/1.1.0");

let retries = 0;
let backoff_ms = INITIAL_BACKOFF_MS;
Expand Down
2 changes: 1 addition & 1 deletion src/lockfile.hml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let LOCK_VERSION = 1;
export fn create_empty() {
return {
lockVersion: LOCK_VERSION,
hemlock: "1.0.0",
hemlock: "1.1.0",
dependencies: {}
};
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.hml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import * as installer from "./installer.hml";
import * as cache from "./cache.hml";

// Version info
let HPM_VERSION = "1.0.7";
let HPM_VERSION = "1.1.0";

// Exit codes
let EXIT_SUCCESS = 0;
Expand Down
2 changes: 1 addition & 1 deletion test/test_lockfile.hml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export fn run() {
test("creates empty lockfile", fn() {
let lock = lockfile.create_empty();
assert_eq(lock.lockVersion, 1, "lockVersion");
assert_eq(lock.hemlock, "1.0.0", "hemlock");
assert_eq(lock.hemlock, "1.1.0", "hemlock");
assert_not_null(lock.dependencies, "dependencies");
});

Expand Down
Loading