Skip to content
This repository has been archived by the owner on Apr 10, 2020. It is now read-only.

Commit

Permalink
Changed company name references
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrankruijter committed Mar 5, 2020
1 parent 0a30601 commit 65ccfed
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 30 deletions.
22 changes: 6 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.1 - 2020-03-05
### Changed
- Changed company name references.

## 1.0.0 - 2019-08-07
### Added
- ULID generator.
- Random byte ID generator.
- ULID generator with PID extension.

### Changed
- Nothing

### Deprecated
- Nothing

### Removed
- Nothing

### Fixed
- Nothing

### Security
- Nothing

[Unreleased]: https://github.com/ulrack/identifier/compare/1.0.0...HEAD
[Unreleased]: https://github.com/ulrack/identifier/compare/1.0.1...HEAD
[1.0.1]: https://github.com/ulrack/identifier/compare/1.0.0...1.0.1
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at info@jyxon.com. All
reported by contacting the project team at info@grizzit.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Jyxon
Copyright (c) 2019 GrizzIT

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Ulrack Identifier

This package contains a few algorithms to generate unique identifiers.
This package contains a few algorithms to generate unique identifiers.

## Installation

Expand All @@ -23,15 +23,15 @@ The ULID generator generates identifiers based on the ULID algorithms.
### [UlidPidGenerator](src/Component/UlidPidGenerator.php)

The ULID PID generator expands upon the UlidGenerator to create a more
unique identifier. It adds 4 additional characters to the ULID based
unique identifier. It adds 4 additional characters to the ULID based
on the PID assigned to the executing PHP process. This excludes (the
extremely unlikely) possibility of a matching ID being generated
between in 2 separate PHP processes which simultaneously generate an
ID.

### [RandomByteIdGenerator](src/Component/RandomByteIdGenerator.php)

The random bye ID generator generates an identifier based on a set amount of
The random bye ID generator generates an identifier based on a set amount of
random bytes which get converted to their hexadecimal counterpart.
This generator can be instantiated with the number of bytes that should be used.
The number of bytes times two will be the resulting identifier length.
Expand All @@ -46,7 +46,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE_OF_CONDUCT](CODE_OF_CONDUCT

## MIT License

Copyright (c) 2019 Jyxon
Copyright (c) 2019 GrizzIT

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/Common/IdGeneratorInterface.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Component/RandomByteIdGenerator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
4 changes: 2 additions & 2 deletions src/Component/UlidGenerator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down Expand Up @@ -84,7 +84,7 @@ private function ensureRandom(): void
for ($i = 15; $i >= 0 && $this->lastRandom[$i] === 31; $i--) {
$this->lastRandom[$i] = 0;
}

if ($i !== 0) {
$this->lastRandom[$i]++;

Expand Down
2 changes: 1 addition & 1 deletion src/Component/UlidPidGenerator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Component/RandomByteIdGeneratorTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Component/UlidGeneratorTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Component/UlidPidGeneratorTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down

0 comments on commit 65ccfed

Please sign in to comment.