Skip to content

Commit 609f7dc

Browse files
authored
Merge pull request #55 from bandi13/fixRelease
Add ChangeLog and README to release archive
2 parents 28ed8f3 + a81a4ae commit 609f7dc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+845
-176
lines changed

ChangeLog.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# wolfProvider version 1.0.1 (Sept 10, 2024)
2-
Add test-sanity script
3-
Add FIPS testing
4-
Add a sanity check to make sure we can connect to external servers
5-
Fix for openssl denying connections
6-
Add more logging of calls
7-
Add helpful failure messages
8-
Fix 'make check' failures
9-
Fix wp_corebio_get_bio
10-
Add in simple logging for wolfProvider
11-
Use custom list of supported settable parameters
12-
Explicit ignore of generated content
13-
Add simple Github Action
14-
Add in declarations and calls to tests
15-
Add AES CFB encryption/decryption + tests
2+
* Add test-sanity script
3+
* Add FIPS testing
4+
* Add a sanity check to make sure we can connect to external servers
5+
* Fix for openssl denying connections
6+
* Add more logging of calls
7+
* Add helpful failure messages
8+
* Fix 'make check' failures
9+
* Fix wp_corebio_get_bio
10+
* Add in simple logging for wolfProvider
11+
* Use custom list of supported settable parameters
12+
* Explicit ignore of generated content
13+
* Add simple Github Action
14+
* Add in declarations and calls to tests
15+
* Add AES CFB encryption/decryption + tests
1616

1717
# wolfProvider version 1.0.0 (July 17, 2024)
1818

IDE/XCODE/build-openssl-framework.sh

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,22 @@
22

33
# build-openssl-framework.sh
44
#
5-
# Copyright (C) 2006-2023 wolfSSL Inc.
5+
# Copyright (C) 2006-2024 wolfSSL Inc.
66
#
7-
# This file is part of wolfSSL.
7+
# This file is part of wolfProvider.
88
#
9-
# wolfSSL is free software; you can redistribute it and/or modify
9+
# wolfProvider is free software; you can redistribute it and/or modify
1010
# it under the terms of the GNU General Public License as published by
11-
# the Free Software Foundation; either version 2 of the License, or
11+
# the Free Software Foundation; either version 3 of the License, or
1212
# (at your option) any later version.
1313
#
14-
# wolfSSL is distributed in the hope that it will be useful,
14+
# wolfProvider is distributed in the hope that it will be useful,
1515
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1616
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1717
# GNU General Public License for more details.
1818
#
1919
# You should have received a copy of the GNU General Public License
20-
# along with this program; if not, write to the Free Software
21-
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20+
# along with wolfProvider. If not, see <http://www.gnu.org/licenses/>.
2221

2322
set -euo pipefail
2423

IDE/XCODE/build-wolfprovider-framework.sh

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,22 @@
22

33
# build-wolfprov-framework.sh
44
#
5-
# Copyright (C) 2006-2023 wolfSSL Inc.
5+
# Copyright (C) 2006-2024 wolfSSL Inc.
66
#
7-
# This file is part of wolfSSL.
7+
# This file is part of wolfProvider.
88
#
9-
# wolfSSL is free software; you can redistribute it and/or modify
9+
# wolfProvider is free software; you can redistribute it and/or modify
1010
# it under the terms of the GNU General Public License as published by
11-
# the Free Software Foundation; either version 2 of the License, or
11+
# the Free Software Foundation; either version 3 of the License, or
1212
# (at your option) any later version.
1313
#
14-
# wolfSSL is distributed in the hope that it will be useful,
14+
# wolfProvider is distributed in the hope that it will be useful,
1515
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1616
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1717
# GNU General Public License for more details.
1818
#
1919
# You should have received a copy of the GNU General Public License
20-
# along with this program; if not, write to the Free Software
21-
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20+
# along with wolfProvider. If not, see <http://www.gnu.org/licenses/>.
2221

2322
set -euo pipefail
2423

IDE/XCODE/build-wolfssl-framework.sh

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,22 @@
22

33
# build-wolfssl-framework.sh
44
#
5-
# Copyright (C) 2006-2023 wolfSSL Inc.
5+
# Copyright (C) 2006-2024 wolfSSL Inc.
66
#
7-
# This file is part of wolfSSL.
7+
# This file is part of wolfProvider.
88
#
9-
# wolfSSL is free software; you can redistribute it and/or modify
9+
# wolfProvider is free software; you can redistribute it and/or modify
1010
# it under the terms of the GNU General Public License as published by
11-
# the Free Software Foundation; either version 2 of the License, or
11+
# the Free Software Foundation; either version 3 of the License, or
1212
# (at your option) any later version.
1313
#
14-
# wolfSSL is distributed in the hope that it will be useful,
14+
# wolfProvider is distributed in the hope that it will be useful,
1515
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1616
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1717
# GNU General Public License for more details.
1818
#
1919
# You should have received a copy of the GNU General Public License
20-
# along with this program; if not, write to the Free Software
21-
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20+
# along with wolfProvider. If not, see <http://www.gnu.org/licenses/>.
2221

2322
set -euo pipefail
2423

Makefile.am

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ AM_CPPFLAGS = -I$(top_srcdir)/include
1414

1515
lib_LTLIBRARIES = libwolfprov.la
1616

17+
EXTRA_DIST+=ChangeLog.md
18+
EXTRA_DIST+=README.md
19+
1720
include src/include.am
1821
include include/include.am
1922
include test/include.am

0 commit comments

Comments
 (0)