From 594a2f9e25397e3ca2b9ab95ca60d742e3cc42eb Mon Sep 17 00:00:00 2001 From: Alexey Korolev Date: Wed, 22 May 2024 14:23:18 +0300 Subject: [PATCH] Update Makefile --- CHANGELOG.md | 6 ++++++ {{ cookiecutter.name }}/Makefile | 8 ++------ {{ cookiecutter.name }}/README.md | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) 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.