Skip to content

Commit

Permalink
Merge pull request #454 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 12.113.1
  • Loading branch information
andyone authored Apr 1, 2024
2 parents 685e7ea + f7be669 commit 2a47332
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

### 12.113.1

- `[support/pkgs]` Added compatibility with macOS

### 12.113.0

- `[options]` `Alias`, `Conflicts`, and `Bound` now supports string slices
Expand Down
2 changes: 1 addition & 1 deletion ek.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
// ////////////////////////////////////////////////////////////////////////////////// //

// VERSION is current ek package version
const VERSION = "12.113.0"
const VERSION = "12.113.1"

// ////////////////////////////////////////////////////////////////////////////////// //

Expand Down
18 changes: 18 additions & 0 deletions support/pkgs/pkgs_darwin.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Package pkgs provides methods for collecting information about installed packages
package pkgs

// ////////////////////////////////////////////////////////////////////////////////// //
// //
// Copyright (c) 2024 ESSENTIAL KAOS //
// Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0> //
// //
// ////////////////////////////////////////////////////////////////////////////////// //

import "github.com/essentialkaos/ek/v12/support"

// ////////////////////////////////////////////////////////////////////////////////// //

// Collect collect info about packages
func Collect(pkgs ...string) []support.Pkg {
return nil
}

0 comments on commit 2a47332

Please sign in to comment.