Skip to content

Commit dfa25b2

Browse files
version number bumpted
1 parent 60cbf38 commit dfa25b2

7 files changed

Lines changed: 17 additions & 9 deletions

File tree

.github/workflows/build_preprint.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,19 +129,25 @@ jobs:
129129
if [ ! -d "$TARGET_DIR" ]; then TARGET_DIR="."; fi
130130
cd $TARGET_DIR
131131
132-
pandoc paper.md -o paper.pdf \
132+
# Dynamically filter out the AI usage disclosure section into a temporary file
133+
awk '/^# AI usage disclosure/{skip=1} /^# / && !/^# AI usage disclosure/{skip=0} !skip' paper.md > paper_cleaned.md
134+
135+
pandoc paper_cleaned.md -o paper.pdf \
133136
--standalone \
134137
--citeproc \
135138
--pdf-engine=xelatex \
136139
--metadata-file=/tmp/pandoc_meta.yaml \
137140
--include-in-header=/tmp/header.tex \
138141
--include-before-body=/tmp/title_block.tex \
139142
--variable=link-citations=true
143+
144+
# Clean up the temporary file
145+
rm paper_cleaned.md
140146
141147
- name: Upload Artifact
142148
uses: actions/upload-artifact@v4
143149
with:
144150
name: professional-preprint
145151
path: |
146152
paper/paper.pdf
147-
paper.pdf
153+
paper.pdf

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ go through [releases](https://github.com/prathameshnium/PICA-Python-Instrument-C
1212

1313
### [1.0.0] - 2025-12-15 (Initial Public Release)
1414

15-
- **Versioning**: Version numbering has been reset from legacy development builds (v17.0) to v1.0.0 to standardize the package for public distribution and citation. This version will be updated soon, possibly this week.
15+
- **Versioning**: Version numbering has been reset from legacy development builds (v17.0) to v1.0.0 to standardize the package for public distribution and citation.
1616
- **JOSS Submission**: Cleaned up documentation, performed fresh install tests, and completed other proofreading in preparation for submission to the Journal of Open Source Software (JOSS).
1717

1818
---

docs/User_Manual.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,8 @@ PICA is open-source ([MIT License](https://github.com/prathameshnium/PICA-Python
539539
@software{Deshmukh_PICA_2026,
540540
author = {Deshmukh, Prathamesh Keshao and Mukherjee, Sudip},
541541
title = {{PICA: Advanced High-Precision Transport Measurement Automation with Python}},
542+
month = jan,
543+
day = 26,
542544
year = 2026,
543545
publisher = {Zenodo},
544546
version = {1.0.3},
@@ -588,7 +590,7 @@ Financial support for this work was provided under SERB-CRG project grant No. CR
588590
This project is licensed under the MIT License - see the [LICENSE](https://github.com/prathameshnium/PICA-Python-Instrument-Control-and-Automation/blob/main/LICENSE) file for details.
589591
## 15. Appendix A: Project File Structure
590592
591-
For developers and advanced users, the following reference outlines the PICA directory structure (v1.0.0).
593+
For developers and advanced users, the following reference outlines the PICA directory structure (v1.0.3).
592594
593595
594596

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# -- Project information -----------------------------------------------------
44
project = 'PICA'
5-
copyright = '2025, Prathamesh Deshmukh'
5+
copyright = '2026, Prathamesh Deshmukh'
66
author = 'Prathamesh Deshmukh'
7-
release = '1.0.0'
7+
release = '1.0.3'
88

99
# -- General configuration ---------------------------------------------------
1010
extensions = [

pica/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
]
3131

3232
APP_NAME = "PICA Command Line Interface"
33-
VERSION = "1.0.0"
33+
VERSION = "1.0.3"
3434
AUTHORS = "Prathamesh Deshmukh, Sudip Mukherjee"
3535
AFFILIATION = "UGC-DAE Consortium for Scientific Research, Mumbai Centre"
3636
LICENSE = "MIT License"

pica/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def resource_path(relative_path):
122122

123123
class PICALauncherApp:
124124

125-
PROGRAM_VERSION = "1.0.0"
125+
PROGRAM_VERSION = "1.0.3"
126126
CLR_BG_DARK = '#B8A392'
127127
CLR_FRAME_BG = '#E5DCD3'
128128
CLR_ACCENT_GOLD = '#BA6B5E'

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.0"
7+
version = "1.0.3"
88
authors = [
99
{ name="Prathamesh Deshmukh", email="pdeshmukh@csr.res.in" },
1010
{ name="Sudip Mukherjee", email="sudipm@csr.res.in" },

0 commit comments

Comments
 (0)