Skip to content

Commit 5fb69e7

Browse files
committedNov 14, 2023
prepare 0.78.0
1 parent cc3895d commit 5fb69e7

12 files changed

+61
-12
lines changed
 

‎AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Biswapriyo Nath
3131
B. Kevin Hardman
3232
Bogdan Popescu
3333
Brandon Slack
34+
Brecht Sanders
3435
Brendan Long
3536
Brian Kelley
3637
CharlieYJH
@@ -74,6 +75,7 @@ Ilya Lyubimov
7475
Ingo Brückl
7576
Ivan Nazarenko
7677
Ivan Romanov
78+
Jakub Lukasiewicz
7779
Jakub Schmidtke
7880
Jan Weiß
7981
Jason
@@ -88,6 +90,7 @@ Joel Ostraat
8890
Joergen Ibsen
8991
Johnny Oskarsson
9092
Jonas Hurrelmann
93+
Jorengarenar
9194
Joshua Gross
9295
Joshua Parker
9396
Julian Picht
@@ -102,6 +105,7 @@ Leon Breedt
102105
Lorenz Haas
103106
Lykurg
104107
Maciej Bogusz
108+
Manning, James
105109
Marco Stephan
106110
Marcus Nilsson
107111
Marek Fort

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ endif()
138138
# Generate uncrustify_version.h
139139
#
140140

141-
set(UNCRUSTIFY_VERSION "0.77.1_f")
141+
set(UNCRUSTIFY_VERSION "0.78.0_f")
142142

143143
option(NoGitVersionString "Do not use make_version.py and git to build a version string" OFF)
144144
if(NoGitVersionString)

‎ChangeLog

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
Change highlights in uncrustify-0.78.0 (November 2023)
2+
-------------------------------------------------------------------------------
3+
50b364e02d4e6ebe5fa99d2d1de642f1a3fb6570
4+
Added : align_nl_cont_spaces May 11 2023
5+
7c53d3cc66d939dc5b0de25868e947508e2353d5
6+
Added : sp_after_bit_colon Jun 28 2023
7+
Added : sp_before_bit_colon Jun 28 2023
8+
b4af21a59630315f79ec28bc5449c31f48194111
9+
Added : sp_between_ptr_ref Jul 14 2023
10+
84780fef16da0552e7f44785d63d23a2b0e6a8b4
11+
Added : nl_min_after_func_body Aug 3 2023
12+
d8931537292a5cb897cfd561adf581d27087bfe4
13+
Added : sp_before_keyword_ptr_star Aug 10 2023
14+
8ffe999d3382c6f516372627bd529917bc6611ae
15+
Added : sp_before_global_scope_ptr_star Aug 10 2023
16+
Added : sp_before_scope_ptr_star Aug 10 2023
17+
f493e4d9e003648753e6574ba2cd61f5c0bd1352
18+
Added : sp_before_operator_ptr_star Aug 10 2023
19+
Added : sp_before_qualifier_ptr_star Aug 10 2023
20+
Removed : sp_before_keyword_ptr_star Aug 10 2023
21+
adbb82b0f6e551ef976e64a1351ca0eb05acf932
22+
Added : debug_use_the_exit_function_pop Aug 15 2023
23+
2e0e019dc28cac0844b5cff81d05859ee1a02394
24+
Added : nl_max_after_func_body Aug 28 2023
25+
cb44fe733a2c1e0391cfa5afdac77f7e66d688e1
26+
Added : sp_cpp_lambda_argument_list_empty Sep 12 2023
27+
e058aafd4ee5e407e250a6b921886d2c00d6a622
28+
Added : align_func_proto_span_ignore_cont_lines Oct 21 2023
29+
130
Change highlights in uncrustify-0.77.0 (May 2023)
231
-------------------------------------------------------------------------------
332
ea6c54eefe2f3272a4867d30920408c327167199

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
A source code beautifier for C, C++, C#, Objective-C, D, Java, Pawn and Vala.
1010

1111
## Features
12-
* Highly configurable - 850 configurable options as of version 0.77.1
12+
* Highly configurable - 850 configurable options as of version 0.78.0
1313
- <details><summary>add/remove spaces</summary>
1414

1515
- `sp_before_sparen`: _Add or remove space before '(' of 'if', 'for', 'switch', 'while', etc._

‎documentation/htdocs/config.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Uncrustify_d-0.76.0-148-ce753d9e9-dev
1+
# Uncrustify-0.78.0
22

33
#
44
# General options

‎documentation/htdocs/default.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Uncrustify_d-0.76.0-148-ce753d9e9-dev
1+
# Uncrustify-0.78.0
22

33
#
44
# General options

‎documentation/htdocs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ <h2>Features</h2>
5454
<li>Add or remove parens on return statements</li>
5555
<li>Add or remove braces on single-statement if/do/while/for statements</li>
5656
<li>Supports embedded SQL 'EXEC SQL' stuff</li>
57-
<li>Highly configurable - 850 configurable options as of version 0.77.1</li>
57+
<li>Highly configurable - 850 configurable options as of version 0.78.0</li>
5858
</ul>
5959

6060
<p>

‎etc/defaults.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Uncrustify_d-0.76.0-148-ce753d9e9-dev
1+
# Uncrustify-0.78.0
22

33
#
44
# General options

‎etc/uigui_uncrustify.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ showHelpParameter=-h
1616
stringparaminquotes=false
1717
useCfgFileParameter="-c "
1818
useRegex=true
19-
version=Uncrustify_d-0.76.0-148-ce753d9e9-dev
19+
version=Uncrustify-0.78.0
2020

2121
[Newlines]
2222
Category=0

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uncrustify",
3-
"version": "0.77.1",
3+
"version": "0.78.0",
44
"description": "A highly configurable, easily modifiable source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA",
55
"main": "uncrustify",
66
"scripts": {

‎release-process.rst

+17-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
.. Update the date in the next line when editing this document!
66
7-
*This document was last updated on 2023-05-11, for Uncrustify 0.7r76.0.*
7+
*This document was last updated on 2023-11-13, for Uncrustify 0.78.0.*
88

99
This document uses "0.1.2" throughout as an example version number.
1010
Whenever you see this, you should substitute the version number
@@ -66,6 +66,22 @@ You might need a new PAT for your account, for your admin-account.
6666
See:
6767
https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/
6868
https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token
69+
loggin with a admin account at https://github.com/uncrustify/uncrustify
70+
on the right, click on the photo
71+
scroll down to "Settings"
72+
on the left, scroll down to "Developer settings", and click
73+
on the left, click on "Personal access tokens"
74+
choose "Tokens (classic), click
75+
if necessary "Delete" expired token(s)
76+
click on "Generate new token"
77+
choose "Generate new token (classic)", click
78+
choose a "what's this token for"
79+
click on "repo"
80+
scroll down to bottom and click on "Generate token"
81+
Make sure to copy your personal access token now. You won’t be able to see it again!
82+
copy the token "ghp_otx****"
83+
and substitute in the file .git/config fuer [remote "origin"]
84+
"url = https://gmaurel:ghp_otxZ****"
6985

7086
Then, run::
7187

‎scripts/gen_changelog.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ def main():
9696
changes.append(c)
9797

9898
for c in changes:
99-
print(c.sha)
99+
print(' ', c.sha)
100100
for o in c.added_options:
101-
print(' Added : {:36} {}'.format(o, c.date))
101+
print(' Added : {:36} {}'.format(o, c.date))
102102
for o in c.removed_options:
103-
print(' Removed : {:36} {}'.format(o, c.date))
103+
print(' Removed : {:36} {}'.format(o, c.date))
104104

105105
return 0
106106

0 commit comments

Comments
 (0)
Please sign in to comment.