Skip to content

Commit 92192f1

Browse files
committed
Set version to 0.3.0
1 parent 78f52d7 commit 92192f1

File tree

4 files changed

+24
-19
lines changed

4 files changed

+24
-19
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*.sw?
22
*.exe
33
*.obj
4-
*.sha1
4+
*.sha*
55
html/
66
latex/

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
0.3.0 (UNRELEASED)
4+
0.3.0 (2019-03-24)
55
------------------
66
### Added
77
- Support mapping of injected keyboard events.

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ Apart from documenting how Uncap works on Windows, this README contains
99
detailed documentation about how to remap keys on Linux and Mac as well.
1010

1111
[DOWNLOAD-BADGE]: https://img.shields.io/badge/download-uncap.exe-brightgreen.svg
12-
[DOWNLOAD]: https://github.com/susam/uncap/releases/download/0.2.2/uncap.exe
13-
12+
[DOWNLOAD]: https://github.com/susam/uncap/releases/download/0.3.0/uncap.exe
1413
[LICENSE-BADGE]: https://img.shields.io/badge/license-MIT-blue.svg
1514

1615

@@ -48,8 +47,8 @@ The following list briefly describes some of the features of Uncap.
4847
Windows system.
4948
4. Disable key mappings easily by stopping Uncap.
5049
5. It is a single-file executable. It is very lightweight. The
51-
executable is only about 82 KB in size. It occupies about 1 MB or
52-
less of memory, and negligible CPU while running.
50+
executable is only about 100 KB in size. It occupies less than 1 MB
51+
of memory and negligible CPU while running.
5352

5453
There are several other methods and tools available on Windows to map
5554
one key to another. But none of them seem to have all five features
@@ -75,8 +74,8 @@ Escape key, however to do so, Uncap must be run with arguments either
7574
from Command Prompt or from Windows Run dialog box. The following steps
7675
show how uncap.exe may be used to map Caps Lock key to Left Control key.
7776

78-
1. Copy uncap.exe to a directory specified in the Windows PATH
79-
variable. C:\Windows is a very convenient location to copy this
77+
1. Copy `uncap.exe` to a directory specified in the Windows `PATH`
78+
variable. `C:\Windows` is a very convenient location to copy this
8079
file to.
8180

8281
2. Launch Windows Run dialog box by pressing `Windows Logo Key` + `R`.
@@ -179,7 +178,7 @@ details are illustrated in the list of examples below.
179178

180179
uncap -k
181180

182-
The above command kill all other instances of Uncap that are
181+
The above command kills all other instances of Uncap that are
183182
running with or without a console.
184183

185184
11. To run Uncap with a console, use the `-c` or `--console` option.

dev/README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ build the project with gcc.
4141
An executable file named `uncap.exe` is generated in the current
4242
directory if the build succeeds.
4343

44-
Version 0.2.2 of Uncap was built using MinGW.
44+
Version 0.2.2 and later versions of Uncap was built using MinGW.
4545

4646

4747
Build with Microsoft Visual Studio 2005
@@ -86,25 +86,31 @@ The following tasks need to be performed for every release of a new
8686
version. These tasks should be performed with the project's top-level
8787
directory as the current directory.
8888

89-
- Update copyright notice in LICENSE.md.
90-
- Update copyright notice in uncap.c.
91-
- Update `COPYRIGHT` in uncap.c.
92-
- Update `VERSION` in uncap.c.
93-
- Update version in `DOWNLOAD` URL in README.md.
94-
- Update `PROJECT_NUMBER` in Doxyfile.
95-
- Update CHANGES.md.
89+
- Update copyright notice in `LICENSE.md`.
90+
- Update copyright notice in `uncap.c`.
91+
- Update `COPYRIGHT` in `uncap.c`.
92+
- Update `VERSION` in `uncap.c`.
93+
- Update version in `DOWNLOAD` URL in `README.md`.
94+
- Update `PROJECT_NUMBER` in `Doxyfile`.
95+
- Update `CHANGES.md`.
9696
- Build Uncap.
9797

9898
dev\clean.cmd
9999
doxygen
100100
dev\mingwbuild.cmd
101-
dev\checksum
101+
dev\checksum.cmd
102102

103103
- Run `uncap -v` and ensure the version and copyright notice are okay.
104+
- Commit any changes.
105+
106+
git status
107+
git add .
108+
git commit
109+
104110
- Tag the release.
105111

106112
git tag -a <VERSION> -m "Uncap <VERSION>"
107-
git push origin <VERSION>
113+
git push origin master <VERSION>
108114

109115
- Upload `uncap.exe` and `uncap.sha256` to GitHub release page.
110116
- Download `uncap.exe` and `uncap.sha256` from GitHub release page and

0 commit comments

Comments
 (0)