diff --git a/CHANGELOG.md b/CHANGELOG.md index d91238b..5113cb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to the "arcade-vsc" extension will be documented in this fil The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Pre-release [0.7.1] - 2024-07-02 + +## Added + +- Added version number to user agent. + ## Pre-release [0.7.0] - 2024-07-02 ## Added @@ -111,6 +117,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release of the extension. - Added the ability to track hack hour times in the status bar. +[0.7.1]: https://github.com/samdev-7/arcade-vsc/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/samdev-7/arcade-vsc/compare/v0.6.4...v0.7.0 [0.6.4]: https://github.com/samdev-7/arcade-vsc/compare/v0.6.3...v0.6.4 [0.6.3]: https://github.com/samdev-7/arcade-vsc/compare/v0.6.2...v0.6.3 diff --git a/package-lock.json b/package-lock.json index 835c5ad..fd81aa9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "arcade-vsc", - "version": "0.7.0", + "version": "0.7.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "arcade-vsc", - "version": "0.7.0", + "version": "0.7.1", "license": "MIT", "dependencies": { "@vscode/webview-ui-toolkit": "^1.4.0", diff --git a/package.json b/package.json index 027c914..133ced0 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "arcade-vsc", "displayName": "Arcade VSC", "description": "Visual Studio Code integration for Hack Club Arcade", - "version": "0.7.0", + "version": "0.7.1", "engines": { "vscode": "^1.90.0" }, diff --git a/src/api.ts b/src/api.ts index 069da76..312e889 100644 --- a/src/api.ts +++ b/src/api.ts @@ -4,7 +4,7 @@ import { AxiosResponse, AxiosError } from "axios"; const HH_ENDPOINT = "https://hackhour.hackclub.com"; axios.interceptors.request.use((config) => { - config.headers["User-Agent"] = "Arcade VSC Extension"; + config.headers["User-Agent"] = "Arcade VSC Extension/0.7.1"; return config; });