File tree 1 file changed +14
-8
lines changed
1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change 3
3
1. Get the maintainer's tools:
4
4
5
5
```
6
- yum install autoconf automake autoconf-archive make
6
+ dnf install autoconf automake autoconf-archive make
7
7
```
8
8
9
- 2. Get `gitlog-to-changelog` tool:
9
+ 2. Install postgresql-server:
10
+
11
+ ```
12
+ dnf install postgresql-server
13
+ ```
14
+
15
+ 3. Get `gitlog-to-changelog` tool:
10
16
11
17
```
12
18
wget https://raw.githubusercontent.com/manuelbua/gitver/master/gitlog-to-changelog
13
19
chmod a+x gitlog-to-changelog
14
20
PATH="$(pwd):$PATH"
15
21
```
16
22
17
- 3 . Git release administrative -- a commit like this: https://github.com/devexp-db/postgresql-setup/commit/3cf4aaa5
23
+ 4 . Git release administrative -- a commit like this: https://github.com/devexp-db/postgresql-setup/commit/3cf4aaa5
18
24
19
- 4 . Add a tag for the release
25
+ 5 . Add a tag for the release
20
26
21
27
```
22
28
git tag -a v8.6 -m "Release v8.6"
23
29
```
24
30
25
- 5 . Post-release administrative -- a commit like this: https://github.com/devexp-db/postgresql-setup/commit/c7ed7144
31
+ 6 . Post-release administrative -- a commit like this: https://github.com/devexp-db/postgresql-setup/commit/c7ed7144
26
32
27
- 6 . Push the changes
33
+ 7 . Push the changes
28
34
29
35
```
30
36
git push
31
37
```
32
38
33
- 7 . Create a tarball
39
+ 8 . Create a tarball
34
40
```
35
41
# aclocal
36
42
# automake --add-missing
@@ -40,7 +46,7 @@ autoreconf -vfi
40
46
make dist-gzip
41
47
```
42
48
43
- 8 . Upload the tarball to github and create a release from the new tag like this: https://github.com/devexp-db/postgresql-setup/releases/tag/v8.5
49
+ 9 . Upload the tarball to github and create a release from the new tag like this: https://github.com/devexp-db/postgresql-setup/releases/tag/v8.5
44
50
45
51
https://github.com/devexp-db/postgresql-setup/releases/new
46
52
You can’t perform that action at this time.
0 commit comments