diff --git a/CHANGELOG.md b/CHANGELOG.md index b818b03..63dcf80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2.2.1] - 2024-05-22 + +### Changed + +- Обновлен Makefile + ## [2.2.0] - 2024-05-08 ### Changed diff --git a/{{ cookiecutter.name }}/Makefile b/{{ cookiecutter.name }}/Makefile index f457a40..6a3d883 100644 --- a/{{ cookiecutter.name }}/Makefile +++ b/{{ cookiecutter.name }}/Makefile @@ -8,10 +8,6 @@ all: test $(API_KEY): touch $@ -.PHONY: bootstrap -## bootstrap: Bootstrap project dependencies for development -bootstrap: hook certs - .PHONY: pods ## pods: Download project packages pods: gems @@ -24,7 +20,7 @@ certs: gems $(API_KEY) .PHONY: project ## project: Generate .xcodeproj file using XcodeGen utility -project: +project: gems mint run "yonaskolb/XcodeGen@2.38.0" .PHONY: test @@ -69,7 +65,7 @@ hooks: .PHONY: clean ## clean: Clean up project files clean: - rm -fr .cache .build + rm -fr .cache .build Pods .PHONY: help ## help: Prints help message diff --git a/{{ cookiecutter.name }}/README.md b/{{ cookiecutter.name }}/README.md index 40b2564..5523c49 100644 --- a/{{ cookiecutter.name }}/README.md +++ b/{{ cookiecutter.name }}/README.md @@ -32,4 +32,4 @@ The resulted encrypted file should be committed to the repository. --- -This project was created using [the project template](https://github.com/alphatroya/swift-project-template) version 2.2.0. +This project was created using [the project template](https://github.com/alphatroya/swift-project-template) version 2.2.1.