Browse Source

Update ChangeLog and bump version for v1.2 release

Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
Joachim Nilsson 5 years ago
parent
commit
f53a0e308f
2 changed files with 15 additions and 11 deletions
  1. 14
    10
      ChangeLog.md
  2. 1
    1
      configure.ac

+ 14
- 10
ChangeLog.md View File

@@ -4,19 +4,22 @@ Change Log
4 4
 All relevant changes to the project are documented in this file.
5 5
 
6 6
 
7
-[v1.2][UNRELEASED] - 2018-08-xx
8
--------------------------------
7
+[v1.2][] - 2018-09-23
8
+---------------------
9 9
 
10 10
 ### Changes
11
-- Convert to GNU configure & build system
12
-- Add support for installing non-SUID root using an udev rule
11
+- Converted to GNU configure & build system
12
+- Major rewrite to add a device system, folds in all kinds of
13
+  display/keyboard/LED controllers under one roof.  Note, this
14
+  change break command line options from previous releases
15
+- Support for installing as non-SUID root using an udev rule
13 16
   enabled `--with-udev` to the new configure script
14
-- Migrate to use `~/.cache/light` instead of `/etc/light` for
15
-  unpriviliged operation
16
-- Add proper light.1 man page, remvoes help2man dependency
17
-- Simplify presentation of commands and options in built-in help text,
17
+- Migrated to use `~/.cache/light` instead of `/etc/light` for
18
+  unpriviliged operation.  Respects XDG_CACHE_HOME if set
19
+- Added proper light.1 man page, remvoes help2man dependency
20
+- Update presentation of commands and options in built-in help text,
18 21
   as well as in the README and man page
19
-- Change to Linux coding style
22
+- Overhaul of coding style, see DOCUMENTATION.md for details
20 23
 - Add Fedora installation instructions
21 24
 
22 25
 
@@ -106,7 +109,8 @@ v0.7 - 2012-11-18
106 109
 - Ported bash script to C
107 110
 
108 111
 
109
-[UNRELEASED]: https://github.com/haikarainen/light/compare/v1.1.2...HEAD
112
+[UNRELEASED]: https://github.com/haikarainen/light/compare/v1.2...HEAD
113
+[v1.2]:       https://github.com/haikarainen/light/compare/v1.1.2...v1.2
110 114
 [v1.1.2]:     https://github.com/haikarainen/light/compare/v1.1...v1.1.2
111 115
 [v1.1]:       https://github.com/haikarainen/light/compare/v1.0...v1.1
112 116
 [v1.0]:       https://github.com/haikarainen/light/compare/v0.9...v1.0

+ 1
- 1
configure.ac View File

@@ -1,4 +1,4 @@
1
-AC_INIT([light], [1.2-dev], [https://github.com/haikarainen/light/issues])
1
+AC_INIT([light], [1.2], [https://github.com/haikarainen/light/issues])
2 2
 AM_INIT_AUTOMAKE([1.11 foreign subdir-objects])
3 3
 AM_SILENT_RULES([yes])
4 4