Skip to content

Commit c67a5ab

Browse files
committed
Update steps in README.release file
Adding required postgresql-server package.
1 parent 39e5e01 commit c67a5ab

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

README.release

+14-8
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,40 @@
33
1. Get the maintainer's tools:
44

55
```
6-
yum install autoconf automake autoconf-archive make
6+
dnf install autoconf automake autoconf-archive make
77
```
88

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:
1016

1117
```
1218
wget https://raw.githubusercontent.com/manuelbua/gitver/master/gitlog-to-changelog
1319
chmod a+x gitlog-to-changelog
1420
PATH="$(pwd):$PATH"
1521
```
1622

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
1824

19-
4. Add a tag for the release
25+
5. Add a tag for the release
2026

2127
```
2228
git tag -a v8.6 -m "Release v8.6"
2329
```
2430

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
2632

27-
6. Push the changes
33+
7. Push the changes
2834

2935
```
3036
git push
3137
```
3238

33-
7. Create a tarball
39+
8. Create a tarball
3440
```
3541
# aclocal
3642
# automake --add-missing
@@ -40,7 +46,7 @@ autoreconf -vfi
4046
make dist-gzip
4147
```
4248

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
4450

4551
https://github.com/devexp-db/postgresql-setup/releases/new
4652

0 commit comments

Comments
 (0)