From 65e86e95c9d999036472ed31edde104539c89f64 Mon Sep 17 00:00:00 2001 From: Atsushi Matsuo Date: Sun, 13 Aug 2023 05:39:34 +0900 Subject: [PATCH] Drop support for 32-bit Windows version --- LICENSE.txt | 2 +- Makefile | 14 -------------- release-notes.txt | 3 ++- 3 files changed, 3 insertions(+), 16 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 9302f2a..ecc0874 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2021 Emic Corporation +Copyright (c) 2019-2023 Emic Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index 9d646c7..6c97a95 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,8 @@ DIST_DIR=dist MACOS_DIR=macos MACOS_ALT_DIR=macos-alt WINDOWS_DIR=windows-x64 -WINDOWS_32BIT_DIR=windows-x32 DIST_MACOS_DIR=$(NAME)-$(VERSION)-$(MACOS_DIR) DIST_WINDOWS_DIR=$(NAME)-$(VERSION)-$(WINDOWS_DIR) -DIST_WINDOWS_32BIT_DIR=$(NAME)-$(VERSION)-$(WINDOWS_32BIT_DIR) all: build @@ -44,10 +42,6 @@ build-windows: mkdir -p $(DIST_DIR)/$(WINDOWS_DIR) GOOS=windows GOARCH=amd64 CGO_ENABLED=0 $(GOBUILD) -ldflags "-X main.version=$(VERSION)" -o $(DIST_DIR)/$(WINDOWS_DIR)/$(NAME).exe -build-windows-32bit: - mkdir -p $(DIST_DIR)/$(WINDOWS_32BIT_DIR) - GOOS=windows GOARCH=386 CGO_ENABLED=0 $(GOBUILD) -ldflags "-X main.version=$(VERSION)" -o $(DIST_DIR)/$(WINDOWS_32BIT_DIR)/$(NAME).exe - .PHONY: dist dist-multiplatform: build cd $(DIST_DIR) && \ @@ -65,14 +59,6 @@ dist-multiplatform: build zip -r $(DIST_WINDOWS_DIR).zip $(DIST_WINDOWS_DIR) && \ cd .. - cd $(DIST_DIR) && \ - mv $(WINDOWS_32BIT_DIR) $(DIST_WINDOWS_32BIT_DIR) && \ - cp -p ../LICENSE.txt $(DIST_WINDOWS_32BIT_DIR)/ && \ - cp -p ../README.md $(DIST_WINDOWS_32BIT_DIR)/ && \ - cp -p ../release-notes.txt $(DIST_WINDOWS_32BIT_DIR)/ && \ - zip -r $(DIST_WINDOWS_32BIT_DIR).zip $(DIST_WINDOWS_32BIT_DIR) && \ - cd .. - ifeq ($(shell uname),Darwin) dist: dist-multiplatform build-macos-alt cd $(DIST_DIR) && \ diff --git a/release-notes.txt b/release-notes.txt index f0276c7..e450b78 100644 --- a/release-notes.txt +++ b/release-notes.txt @@ -6,9 +6,10 @@ Version: 1.1.0 (in development) - Support Apple Silicon on macOS. - Add suport for macOS Big Sur 11, macOS Monterey 12 and macOS Ventura 13. - Built with Go 1.20. -- [INFO] Drop support for macOS Catalina 10.15 or previous. +- [INFO] Drop support for 32-bit Windows version. - [INFO] Drop support for Windows 10 Version 21H2 or previous. - [INFO] Drop support for Windows 7. +- [INFO] Drop support for macOS Catalina 10.15 or previous. Version: 1.0.0 Date: April 5, 2019