Skip to content

Commit 040a7a6

Browse files
committed
Version 1.1.0 Doc Changes
Description: Change docs for version 1.1.0 Implementation: Change docs for version 1.1.0 Related Issues: #2 #3 #4 Were There Tests Added? None --- Signed-off-by: John Gontaryk <[email protected]>
1 parent 7d0c0f7 commit 040a7a6

File tree

5 files changed

+38
-4
lines changed

5 files changed

+38
-4
lines changed

.cspell/cspell-python.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ docstrings
33
kwargs
44
pylint
55
pytest
6+
repr
67
subshell
78
zoautil

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,39 @@
1010

1111
---
1212

13+
## [1.1.0] - 8/12/2025
14+
15+
### Added
16+
17+
- pyIPCS Jupyter Notebook Support
18+
- pyIPCS JSON support
19+
- Added `IpcsJsonEncoder`
20+
- Improved `print` and `repr` for pyIPCS objects
21+
- `Subcmd.output` always returns string whether output is stored in string or file
22+
- Development scripts
23+
- Added `/dev`
24+
- `Subcmd` object `auth` parameter added to execute subcommands in an authorized environment
25+
- Greater customization with ddir creation by adding `BLSCDDIR` parameters
26+
- Added `ddir_defaults`
27+
- Added `create_ddir` and `create_session_ddir` parameters
28+
- Refactored internal code to remove problem with conflicting pyIPCS sessions under the same hlq
29+
30+
### Changed
31+
32+
- `Dump.data['asids_all']` and `Dump.data['storage_areas']` changed to list of dictionaries
33+
- `PyIPCSLogger` changed to `IpcsLogger`
34+
- `IpcsSession.set_defaults` parameter `other` changed to `setdef_params`
35+
- Refactored internal code
36+
37+
### Fixed
38+
39+
- [https://github.com/ambitus/pyIPCS/issues/2](https://github.com/ambitus/pyIPCS/issues/2)
40+
- [https://github.com/ambitus/pyIPCS/issues/3](https://github.com/ambitus/pyIPCS/issues/3)
41+
- [https://github.com/ambitus/pyIPCS/issues/4](https://github.com/ambitus/pyIPCS/issues/4)
42+
- Issue where no jobname in `SELECT ALL` would cause the dump object to fail
43+
44+
---
45+
1346
## [1.0.0] - 4/24/25
1447

1548
### Added

GETTING_STARTED.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ cd path/to/pyIPCS
8181
pip wheel .
8282
```
8383

84-
- After executing the above command there should exist a file that looks something like `pyipcs-1.0.0-py3-none-any.whl` within the `/pyIPCS` directory
84+
- After executing the above command there should exist a file that looks something like `pyipcs-1.1.0-py3-none-any.whl` within the `/pyIPCS` directory
8585

8686
---
8787

8888
### 4. Install the pyIPCS Package
8989

9090
```bash
91-
pip install --force-reinstall pyipcs-1.0.0-py3-none-any.whl
91+
pip install --force-reinstall pyipcs-1.1.0-py3-none-any.whl
9292
```
9393

9494
---

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
---
2020
---
2121

22-
## pyIPCS Version: `1.0.0`
22+
## pyIPCS Version: `1.1.0`
2323

2424
- __To check your current pyIPCS version:__
2525

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyipcs"
7-
version = "1.0.0"
7+
version = "1.1.0"
88
authors = [
99
{ name="John Gontaryk", email="[email protected]" },
1010
]

0 commit comments

Comments
 (0)