Add a CHANGELOG and chemacs-version variable, bump to 1.0

This commit is contained in:
Arne Brasseur 2020-10-01 10:41:04 +02:00
parent 233bb7fb4d
commit 4dad0684bc
2 changed files with 39 additions and 2 deletions

5
.emacs
View file

@ -9,14 +9,14 @@
;; / /:/ ___ ___ / /::\ / /:/ /:/_ __|__|:|\:\ / /:/~/::\ / /:/ ___ / /:/ /::\
;; /__/:/ / /\ /__/\ /:/\:\ /__/:/ /:/ /\ /__/::::| \:\ /__/:/ /:/\:\ /__/:/ / /\ /__/:/ /:/\:\
;; \ \:\ / /:/ \ \:\/:/__\/ \ \:\/:/ /:/ \ \:\~~\__\/ \ \:\/:/__\/ \ \:\ / /:/ \ \:\/:/~/:/
;; \ \:\ /:/ \ \::/ \ \::/ /:/ \ \:\ \ \::/ \ \:\ /:/ \ \0.1 /:/
;; \ \:\ /:/ \ \::/ \ \::/ /:/ \ \:\ \ \::/ \ \:\ /:/ \ \1.0 /:/
;; \ \:\/:/ \ \:\ \ \:\/:/ \ \:\ \ \:\ \ \:\/:/ \__\/ /:/
;; \ \::/ \ \:\ \ \::/ \ \:\ \ \:\ \ \::/ /__/:/
;; \__\/ \__\/ \__\/ \__\/ \__\/ \__\/ \__\/
;;
;; ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
;;
;; Chemacs - Emacs Profile Switcher v0.1
;; Chemacs - Emacs Profile Switcher
;;
;; INSTALLATION
;;
@ -44,6 +44,7 @@
;; (package-initialize)
;;; Code:
(defvar chemacs-version "1.0")
(defvar chemacs-profiles-path "~/.emacs-profiles.el")
(defvar chemacs-default-profile-path "~/.emacs-profile")

36
CHANGELOG.md Normal file
View file

@ -0,0 +1,36 @@
# 1.0 (2020-10-01)
- Only load `custom-file` when it is different from `init-file` (prevent double loading of `init-file`)
- Fixes to the install script for OS X
- Documentation fixes
- Introduce `chemacs-version` variable
- start keeping a CHANGELOG
# 0.6 (2020-02-23 / 71e30878)
- NixOS support in installation script
- Add Powershell installation script
# 0.5 (2020-01-14 / 4c279476)
- First class support for straight.el
- Documentation fixes
# 0.4 (2018-10-01 / 68382d50)
- Support GNU style `--with-profile=profilename` (so with equal sign)
# 0.3 (2018-09-30 / 1140501d)
- Allow selection of default profile using `~/.emacs-profile`
# 0.2 (2018-06-06 / 1f5601a9)
- Add installer script
- Improve documentation
- Improve support for older Emacsen
- Document how to use with Doom
# 0.1 (2018-05-18 / 8500636a)
- Initial release