File tree Expand file tree Collapse file tree 5 files changed +38
-4
lines changed
Expand file tree Collapse file tree 5 files changed +38
-4
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ docstrings
33kwargs
44pylint
55pytest
6+ repr
67subshell
78zoautil
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -81,14 +81,14 @@ cd path/to/pyIPCS
8181pip 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---
Original file line number Diff line number Diff line change 1919---
2020---
2121
22- ## pyIPCS Version: ` 1.0 .0 `
22+ ## pyIPCS Version: ` 1.1 .0 `
2323
2424- __ To check your current pyIPCS version:__
2525
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " pyipcs"
7- version = " 1.0 .0"
7+ version = " 1.1 .0"
88authors = [
99 {
name =
" John Gontaryk" ,
email =
" [email protected] " },
1010]
You can’t perform that action at this time.
0 commit comments