Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create universal build #25

Merged
merged 1 commit into from
Apr 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
This is the changelog for this fork of OMI.
It documents the changes in each of the tagged releases

## 2.2.0 - TBD

+ Created universal builds to be used across the various nix distributions
+ `glibc` is based on CentOS 7 and is designed for most GNU/Linux distributions, EL/Debian/Arch/etc
+ `musl` is based on Alpine 3 and is designed for busybox/Linux distributions, Alpine
+ `macOS` is based on macOS
+ These universal builds is designed to reduce the number of `libmi` builds being distributed and automatically support future distribution releases as they are made
+ Deprecated the `-Distribution` parameter of `Install-WSMan` as it no longer does anything
+ Removed support for Debian 8 and Fedora 31 due to the age of the distribution
+ Added initial support for OpenSSL 3.x for glibc, musl, and macOS based distributions
+ Added support for using OpenSSL installed from `port` if `brew` is not used on macOS
+ One of them must be installed but you are no longer limited to just `brew`
+ Use `@loader_path` on macOS instead of `@executable_path` for loading `libmi` to support relative paths from the library itself rather than `pwsh`
+ `Register-TrustedCertificate` will now create a file with a determinable name to avoid creating duplicate entries

## 2.1.0 - 2020-11-24

+ Added the following distributions
Expand Down
2 changes: 1 addition & 1 deletion PSWSMan/PSWSMan.psd1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@{
ModuleVersion = '2.1.0'
ModuleVersion = '2.2.0'
RootModule = 'PSWSMan'
GUID = '92ec96bf-3ff4-41b2-8694-cd3ee636d3fd'
Author = 'Jordan Borean'
Expand Down
Loading