Skip to content

Commit

Permalink
Version 1.6 (#186)
Browse files Browse the repository at this point in the history
* rel : migrate to version 1.6

* rel : CHANGELOG.md updated

* rel : bug_report.yml updated
  • Loading branch information
sepandhaghighi authored Nov 12, 2024
1 parent 9eff165 commit a0ec05b
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 17 deletions.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ body:
label: Python version
description: Which version of Python are you using?
options:
- Python 3.13
- Python 3.12
- Python 3.11
- Python 3.10
Expand All @@ -85,6 +86,7 @@ body:
label: PyRGG version
description: Which version of PyRGG are you using?
options:
- PyRGG 1.6
- PyRGG 1.5
- PyRGG 1.4
- PyRGG 1.3
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.6] - 2024-11-13
### Added
- `pyrgg.engines.erdos_reyni` module
- `save_log` function
Expand Down Expand Up @@ -211,7 +212,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- JSON format
- README

[Unreleased]: https://github.com/sepandhaghighi/pyrgg/compare/v1.5...dev
[Unreleased]: https://github.com/sepandhaghighi/pyrgg/compare/v1.6...dev
[1.6]: https://github.com/sepandhaghighi/pyrgg/compare/v1.5...v1.6
[1.5]: https://github.com/sepandhaghighi/pyrgg/compare/v1.4...v1.5
[1.4]: https://github.com/sepandhaghighi/pyrgg/compare/v1.3...v1.4
[1.3]: https://github.com/sepandhaghighi/pyrgg/compare/v1.2...v1.3
Expand Down
2 changes: 1 addition & 1 deletion PYRGG.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

block_cipher = None

pyrgg_version = "1.5"
pyrgg_version = "1.6"


a = Analysis(['pyrgg/__main__.py'],
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ PyRGG is a user-friendly synthetic random graph generator that is written in Pyt

### PyPI
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- `pip install pyrgg==1.5`
- `pip install pyrgg==1.6`

### Source Code
- Download [Version 1.5](https://github.com/sepandhaghighi/pyrgg/archive/v1.5.zip) or [Latest Source ](https://github.com/sepandhaghighi/pyrgg/archive/dev.zip)
- Download [Version 1.6](https://github.com/sepandhaghighi/pyrgg/archive/v1.6.zip) or [Latest Source ](https://github.com/sepandhaghighi/pyrgg/archive/dev.zip)
- `pip install .`

### Conda
Expand All @@ -76,8 +76,8 @@ PyRGG is a user-friendly synthetic random graph generator that is written in Pyt

⚠️ For PyRGG targeting Windows < 10, the user needs to take special care to include the Visual C++ run-time `.dlls`(for more information visit [here](https://pyinstaller.org/en/v3.3.1/usage.html#windows))

- Download [Exe-Version 1.5](https://github.com/sepandhaghighi/pyrgg/releases/download/v1.5/PYRGG-1.5.exe)
- Run `PYRGG-1.5.exe`
- Download [Exe-Version 1.6](https://github.com/sepandhaghighi/pyrgg/releases/download/v1.6/PYRGG-1.6.exe)
- Run `PYRGG-1.6.exe`

### System Requirements
PyRGG will likely run on a modern dual core PC. Typical configuration is:
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 1.5 | :white_check_mark: |
| < 1.5 | :x: |
| 1.6 | :white_check_mark: |
| < 1.6 | :x: |

## Reporting a Vulnerability

Expand Down
8 changes: 4 additions & 4 deletions otherfile/Version.rc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VSVersionInfo(
ffi=FixedFileInfo(
filevers=(1, 5, 0, 0),
prodvers=(1, 5, 0, 0),
filevers=(1, 6, 0, 0),
prodvers=(1, 6, 0, 0),
mask=0x3f,
flags=0x0,
OS=0x40004,
Expand All @@ -16,12 +16,12 @@ VSVersionInfo(
u'040904B0',
[StringStruct(u'CompanyName', u'PyRGG Development Team'),
StringStruct(u'FileDescription', u'PYRGG.exe'),
StringStruct(u'FileVersion', u'1.5.0.0'),
StringStruct(u'FileVersion', u'1.6.0.0'),
StringStruct(u'InternalName', u'PYRGG.exe'),
StringStruct(u'LegalCopyright', u'Copyright (c) 2024 PyRGG Development Team'),
StringStruct(u'OriginalFilename', u'PYRGG.exe'),
StringStruct(u'ProductName', u'PyRGG'),
StringStruct(u'ProductVersion', u'1, 5, 0, 0')])
StringStruct(u'ProductVersion', u'1, 6, 0, 0')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down
2 changes: 1 addition & 1 deletion otherfile/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pyrgg" %}
{% set version = "1.5" %}
{% set version = "1.6" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion otherfile/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
VERSION = "1.5"
VERSION = "1.6"

VERSION_1 = VERSION.split(".")[0]
VERSION_2 = str(int(float(VERSION) * 10 - int(VERSION_1) * 10))
Expand Down
2 changes: 1 addition & 1 deletion pyrgg/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
OUTPUT_FORMAT_INV = {v: k for k, v in OUTPUT_FORMAT.items()}


PYRGG_VERSION = "1.5"
PYRGG_VERSION = "1.6"

SOURCE_DIR = os.getcwd()

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ def read_description():
setup(
name='pyrgg',
packages=['pyrgg', 'pyrgg.engines'],
version='1.5',
version='1.6',
description='Python Random Graph Generator',
long_description=read_description(),
long_description_content_type='text/markdown',
author='PyRGG Development Team',
author_email='[email protected]',
url='https://github.com/sepandhaghighi/pyrgg',
download_url='https://github.com/sepandhaghighi/pyrgg/tarball/v1.5',
download_url='https://github.com/sepandhaghighi/pyrgg/tarball/v1.6',
keywords='random graph python3 python generator graph-process generator DIMACS JSON YAML Pickle CSV TSV WEL ASP TGF UCINET',
project_urls={
'Webpage': 'https://www.pyrgg.site',
Expand Down

0 comments on commit a0ec05b

Please sign in to comment.