Skip to content

Commit

Permalink
Merge pull request #33 from iricigor/release-1.0.1
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
iricigor authored Nov 28, 2018
2 parents 097a73b + 6dd1d1c commit 52dcf8f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Public/Update-ModuleFromCache.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function Update-ModuleFromCache {
Write-Log -Message "checking module $M1 for updatable version"
$FoundOnline = $true
$ModuleOnline = ConvertFrom-Json ($_.Line)
if ($AllModules) {
if ($SearchAll) {
$LocalModule = $AllModules | where Name -eq $M1 | Sort-Object Version | Select -Last 1
} else {
Write-Log -Message "searching for local module $M1"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# PowerShell's apt-get update

This module provides functionality for PowerShellGet inspired by `apt-get update` Linux command. This is only proof-of-concept work, though it is (almost) fully functional.
This module provides functionality for PowerShellGet inspired by Linux command `apt-get update`. You can **100 times faster** search for online modules, scripts, updatable modules, etc.

*This is only proof-of-concept work, though it is (almost) fully functional.*

## Explanation

Expand Down
9 changes: 9 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

Release notes for PowerShell module **`psaptgetupdate`** by [github.com/iricigor](https://github.com/iricigor)

## 1.0.1

Date: Wednesday, November 28, 2018

### Bug fixes in 1.0.1

- Import-Module on clean system does not throw an error (no changes in functionality)
- Update-Module properly checks for local module version

## 1.0

Date: Monday, November 26, 2018
Expand Down
6 changes: 3 additions & 3 deletions psaptgetupdate.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = '.\PSAptGetUpdate.psm1'

# Version number of this module.
ModuleVersion = '1.0'
ModuleVersion = '1.0.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand All @@ -30,7 +30,7 @@ Author = 'iiric'
Copyright = '(c) 2018 iiric. All rights reserved.'

# Description of the functionality provided by this module
Description = 'This module provides functionality for PowerShellGet inspired by apt-get update Linux command. It means 100 times faster checks for Find-Module, Update-Module, etc. This is only proof-of-concept work, though it is (almost) fully functional.'
Description = 'This module provides functionality for PowerShellGet inspired by Linux command apt-get update. You can 100 times faster search for online modules, scripts, updatable modules, etc. This is only proof-of-concept work, though it is (almost) fully functional.'

# Minimum version of the Windows PowerShell engine required by this module
# PowerShellVersion = ''
Expand Down Expand Up @@ -107,7 +107,7 @@ PrivateData = @{
IconUri = 'https://raw.githubusercontent.com/iricigor/psaptgetupdate/master/Images/psaptgetupdate-icon-256.png'

# ReleaseNotes of this module
ReleaseNotes = 'Fully documented module; for more info see https://github.com/iricigor/psaptgetupdate/blob/master/ReleaseNotes.md'
ReleaseNotes = 'Fully documented module; Bug fixes; for more info see https://github.com/iricigor/psaptgetupdate/blob/master/ReleaseNotes.md'

} # End of PSData hashtable

Expand Down

0 comments on commit 52dcf8f

Please sign in to comment.