diff --git a/package.json b/package.json index 13751cf..78f347d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hemlang/hpm", - "version": "1.0.6", + "version": "1.0.7", "description": "Hemlock Package Manager - A package manager for the Hemlock programming language", "author": "Hemlock Team", "license": "MIT", diff --git a/src/github.hml b/src/github.hml index 69670ed..5fb2511 100644 --- a/src/github.hml +++ b/src/github.hml @@ -56,7 +56,7 @@ fn github_request(url: string) { } headers.push("Accept: application/vnd.github.v3+json"); - headers.push("User-Agent: hpm/1.0.6"); + headers.push("User-Agent: hpm/1.0.7"); let retries = 0; let backoff_ms = INITIAL_BACKOFF_MS; @@ -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.6"); + headers.push("User-Agent: hpm/1.0.7"); let retries = 0; let backoff_ms = INITIAL_BACKOFF_MS; diff --git a/src/main.hml b/src/main.hml index 2cddd97..d4611c9 100644 --- a/src/main.hml +++ b/src/main.hml @@ -15,7 +15,7 @@ import * as installer from "./installer.hml"; import * as cache from "./cache.hml"; // Version info -let HPM_VERSION = "1.0.6"; +let HPM_VERSION = "1.0.7"; // Exit codes let EXIT_SUCCESS = 0;