🚀 Prepare v1.1.2

This commit is contained in:
ful1e5 2021-02-15 10:01:25 +05:30
parent 2847d2eae3
commit 5db0b14ae5
3 changed files with 29 additions and 26 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [unreleased] ## [unreleased]
## [1.1.2] - 15 Feb 2021
### Changed ### Changed
- Dynamic make install - Dynamic make install
@ -149,7 +151,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Logo and badges - Logo and badges
- CI/CD Pipelines - CI/CD Pipelines
[unreleased]: https://github.com/ful1e5/apple_cursor/compare/v1.1.1...main [unreleased]: https://github.com/ful1e5/apple_cursor/compare/v1.1.2...main
[1.1.2]: https://github.com/ful1e5/apple_cursor/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/ful1e5/apple_cursor/compare/v1.1.0...v1.1.1 [1.1.1]: https://github.com/ful1e5/apple_cursor/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/ful1e5/apple_cursor/compare/v1.0.6...v1.1.0 [1.1.0]: https://github.com/ful1e5/apple_cursor/compare/v1.0.6...v1.1.0
[1.0.6]: https://github.com/ful1e5/apple_cursor/compare/1.0.5...v1.0.6 [1.0.6]: https://github.com/ful1e5/apple_cursor/compare/1.0.5...v1.0.6

View file

@ -1,26 +1,26 @@
{ {
"name": "apple_cursor_bitmapper", "name": "apple_cursor_bitmapper",
"version": "1.1.1", "version": "1.1.2",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"watch": "nodemon --inspect src/index.ts", "watch": "nodemon --inspect src/index.ts",
"render": "yarn ts-node src/index.ts" "render": "yarn ts-node src/index.ts"
}, },
"repository": "git@github.com:ful1e5/apple_cursor.git", "repository": "git@github.com:ful1e5/apple_cursor.git",
"author": "Kaiz Khatri", "author": "Kaiz Khatri",
"license": "GPL-3.0", "license": "GPL-3.0",
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"@types/pixelmatch": "^5.2.2", "@types/pixelmatch": "^5.2.2",
"@types/pngjs": "^3.4.2", "@types/pngjs": "^3.4.2",
"@types/puppeteer": "^5.4.2", "@types/puppeteer": "^5.4.2",
"nodemon": "^2.0.7", "nodemon": "^2.0.7",
"ts-node": "^9.1.1", "ts-node": "^9.1.1",
"typescript": "^4.1.3" "typescript": "^4.1.3"
}, },
"dependencies": { "dependencies": {
"pixelmatch": "^5.2.1", "pixelmatch": "^5.2.1",
"pngjs": "^6.0.0", "pngjs": "^6.0.0",
"puppeteer": "^5.5.0" "puppeteer": "^5.5.0"
} }
} }

View file

@ -5,7 +5,7 @@ from setuptools import setup
setup( setup(
name="applbuild", name="applbuild",
version="1.1.1", version="1.1.2",
description="Generate 'macOSBigSur' cursor theme from PNGs file", description="Generate 'macOSBigSur' cursor theme from PNGs file",
url="https://github.com/ful1e5/apple_cursor", url="https://github.com/ful1e5/apple_cursor",
packages=["applbuild"], packages=["applbuild"],