Skip to content

Commit

Permalink
upgrade netbox (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Jan 8, 2024
1 parent e174310 commit 54628de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/release-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Fixes

-
- `NetBox` was exposing some internal types (#451)

## 4.20.0

Expand Down
9 changes: 3 additions & 6 deletions src/NetBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ _ _ _ ____
| \ | | ___| |_| __ ) _____ __
| \| |/ _ \ __| _ \ / _ \ \/ /
| |\ | __/ |_| |_) | (_) > <
|_| \_|\___|\__|____/ \___/_/\_\ v4.2.2 by @aloneguid
|_| \_|\___|\__|____/ \___/_/\_\ v4.3.0 by @aloneguid
https://github.com/aloneguid/netbox
*/
Expand Down Expand Up @@ -720,7 +720,7 @@ namespace NetBox.Generator {
/// <summary>
/// Generates random data using <see cref="RandomNumberGenerator"/> for increased security
/// </summary>
public static class RandomGenerator {
static class RandomGenerator {
private static readonly RandomNumberGenerator Rnd = RandomNumberGenerator.Create();

//get a cryptographically strong double between 0 and 1
Expand Down Expand Up @@ -1833,17 +1833,14 @@ public static IEnumerable<T> ForEach<T>(this IEnumerable<T> source, Action<T> ac
// FILE: src/NetBox/System/StreamExtensions.cs

namespace System {
using System.Threading.Tasks;
using System.Threading;
using global::System.Collections.Generic;
using global::System.IO;
using global::System.Text;
using System.Diagnostics;

/// <summary>
/// <see cref="Stream"/> extension
/// </summary>
public static class StreamExtensions {
static class StreamExtensions {
#region [ General ]

/// <summary>
Expand Down

0 comments on commit 54628de

Please sign in to comment.