Skip to content

Commit 18751dd

Browse files
changing the back to v 17
1 parent 0f19384 commit 18751dd

7 files changed

Lines changed: 16 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
## Instrument & Software Update Log
22
---
3-
[1.0.1] - 2025-12-02 (Current)
3+
[17.0.0] - 2025-12-02 (Current)
44
Changed
55

66
Directory Structure: Refactored codebase into a professional project structure; moved numerous files to appropriate subdirectories for better organization.
77

8-
Versioning: Standardized version naming conventions. Adopted Semantic Versioning (v1.0.1).
8+
Versioning: Standardized version naming conventions. Adopted Semantic Versioning (v17.0.0).
99

1010
Research & Documentation
1111

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors:
99
given-names: "Sudip"
1010
affiliation: "UGC-DAE Consortium for Scientific Research, Mumbai Centre"
1111
title: "PICA: Python-based Instrument Control and Automation Software Suite"
12-
version: 1.0.1
12+
version: 17.0.0
1313
date-released: 2025-11-23
1414
url: "https://github.com/prathameshnium/PICA-Python-Instrument-Control-and-Automation"
1515
repository-code: "https://github.com/prathameshnium/PICA-Python-Instrument-Control-and-Automation"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ You can now run PICA in two modes: the standard Graphical User Interface (GUI) o
148148
```
149149

150150
2. **Command Line Interface (CLI)**
151-
New in v.1.0.1: A text-based menu for running measurements via SSH, on Raspberry Pis, or in automated environments without a monitor.
151+
New in v.17.0.0: A text-based menu for running measurements via SSH, on Raspberry Pis, or in automated environments without a monitor.
152152
```bash
153153
python pica_cli.py
154154
```
@@ -186,12 +186,12 @@ PICA has evolved from a collection of offline utility scripts into a modular sof
186186
> **�� Project Lore:** For a detailed chronological log of the project's development history, including the offline prototyping phase and specific version changelogs, please refer to [`Change_Logs.md`](Change_Logs.md).
187187
188188
---
189-
[1.0.1] - 2025-12-02 (Current)
189+
[17.0.0] - 2025-12-02 (Current)
190190
Changed
191191
192192
Directory Structure: Refactored codebase into a professional project structure; moved numerous files to appropriate subdirectories for better organization.
193193
194-
Versioning: Standardized version naming conventions. Adopted Semantic Versioning (v1.0.1).
194+
Versioning: Standardized version naming conventions. Adopted Semantic Versioning (v17.0.0).
195195
196196
Research & Documentation
197197
@@ -244,7 +244,7 @@ If you use this software in your research, please cite it using the following Bi
244244
month = sep,
245245
year = 2025,
246246
publisher = {GitHub},
247-
version = {1.0.1},
247+
version = {17.0.0},
248248
url = {https://github.com/prathameshnium/PICA-Python-Instrument-Control-and-Automation}
249249
}
250250
```

docs/User_Manual.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\<img src="../assets/LOGO/PICA\_LOGO\_NBG.png" alt="PICA Logo" width="150"/\>
44
\<h1\>PICA User Manual\</h1\>
55
\<p\>\<strong\>Python-based Instrument Control and Automation Software Suite\</strong\>\</p\>
6-
<p><em>Comprehensive Guide for Version 1.0.1</em></p>
6+
<p><em>Comprehensive Guide for Version 17.0.0</em></p>
77
\</div\>
88

99
-----
@@ -212,7 +212,7 @@ Default communication addresses for selected instruments. Use the **Test GPIB**
212212

213213
### File Structure
214214

215-
Reference for the project directory layout (v1.0.1).
215+
Reference for the project directory layout (v17.0.0).
216216

217217
```text
218218
PICA (Root Directory)/
@@ -246,7 +246,7 @@ If you use this software in your research, please cite it.
246246
month = sep,
247247
year = 2025,
248248
publisher = {GitHub},
249-
version = {1.0.1},
249+
version = {17.0.0},
250250
url = {https://github.com/prathameshnium/PICA-Python-Instrument-Control-and-Automation}
251251
}
252252
```
@@ -256,12 +256,12 @@ If you use this software in your research, please cite it.
256256

257257
## 9\. Version History
258258
-----
259-
[1.0.1] - 2025-12-02 (Current)
259+
[17.0.0] - 2025-12-02 (Current)
260260
Changed
261261

262262
Directory Structure: Refactored codebase into a professional project structure; moved numerous files to appropriate subdirectories for better organization.
263263

264-
Versioning: Standardized version naming conventions. Adopted Semantic Versioning (v1.0.1).
264+
Versioning: Standardized version naming conventions. Adopted Semantic Versioning (v17.0.0).
265265

266266
Research & Documentation
267267

pica/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Metadata & Terms
88
APP_NAME = "PICA Command Line Interface"
9-
VERSION = "1.0.1"
9+
VERSION = "17.0.0"
1010
AUTHORS = "Prathamesh Deshmukh, Sudip Mukherjee"
1111
AFFILIATION = "UGC-DAE Consortium for Scientific Research, Mumbai Centre"
1212
LICENSE = "MIT License"

pica/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BUILD VERSION: 1.0.1
1+
# BUILD VERSION: 17.0.0
22
'''
33
===============================================================================
44
PROGRAM: PICA Launcher
@@ -95,7 +95,7 @@ def resource_path(relative_path):
9595

9696
class PICALauncherApp:
9797

98-
PROGRAM_VERSION = "1.0.1"
98+
PROGRAM_VERSION = "17.0.0"
9999
CLR_BG_DARK = '#2B3D4F'
100100
CLR_FRAME_BG = '#3A506B'
101101
CLR_ACCENT_GOLD = '#FFC107'

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 = "pica-suite"
7-
version = "1.0.1"
7+
version = "17.0.0"
88
authors = [
99
{ name="Prathamesh Deshmukh", email="prathamesh.deshmukh@example.com" },
1010
{ name="Sudip Mukherjee", email="sudipm@csr.res.in" },

0 commit comments

Comments
 (0)