forked from Tanu-N-Prabhu/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreleases.html
More file actions
159 lines (136 loc) · 3.84 KB
/
releases.html
File metadata and controls
159 lines (136 loc) · 3.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Python Repository · Release Notes</title>
<meta name="description" content="Versioned release notes for a Python and Data Science learning repository." />
<link rel="stylesheet" href="assets\style.css" />
</head>
<body>
<header class="hero">
<h1>Python Repository</h1>
<p>Release notes and version history</p>
</header>
<main class="release-grid" aria-label="Release Notes">
<!-- v1.3.0 -->
<article class="release-card accent-purple">
<header class="card-header">
<span class="version">v1.3.0</span>
<time datetime="2026-01-05">Jan 05, 2026</time>
</header>
<section class="card-section">
<h3>Highlights</h3>
<ul>
<li>Major structural refactor for long-term scalability</li>
<li>Improved learning flow and discoverability</li>
</ul>
</section>
<section class="card-section">
<h3>New</h3>
<ul>
<li>Reflective Python article on developer growth</li>
<li>Release Notes badge added</li>
</ul>
</section>
<section class="card-section">
<h3>Improvements</h3>
<ul>
<li>Standardized folder structure</li>
<li>Clear Python vs Data Science separation</li>
</ul>
</section>
</article>
<!-- v1.2.0 -->
<article class="release-card accent-blue">
<header class="card-header">
<span class="version">v1.2.0</span>
<time datetime="2025-12-12">Dec 12, 2025</time>
</header>
<section class="card-section">
<h3>Highlights</h3>
<ul>
<li>Visual and documentation overhaul</li>
<li>Professional README redesign</li>
</ul>
</section>
<section class="card-section">
<h3>New</h3>
<ul>
<li>Redesigned tools section</li>
<li>LinkedIn content folder</li>
</ul>
</section>
<section class="card-section">
<h3>Fixes</h3>
<ul>
<li>Notebook rendering issues</li>
<li>Invalid Colab metadata</li>
</ul>
</section>
</article>
<!-- v1.1.0 -->
<article class="release-card accent-green">
<header class="card-header">
<span class="version">v1.1.0</span>
<time datetime="2025-11-08">Nov 08, 2025</time>
</header>
<section class="card-section">
<h3>Highlights</h3>
<ul>
<li>Expanded scope into data science</li>
<li>Medium articles introduced</li>
</ul>
</section>
<section class="card-section">
<h3>New</h3>
<ul>
<li>Advanced interview questions</li>
<li>EDA notebook</li>
</ul>
</section>
<section class="card-section">
<h3>Improvements</h3>
<ul>
<li>Notebook optimizations</li>
<li>Cleaner documentation structure</li>
</ul>
</section>
</article>
<!-- v1.0.0 -->
<article class="release-card accent-orange">
<header class="card-header">
<span class="version">v1.0.0</span>
<time datetime="2025-10-05">Oct 05, 2025</time>
</header>
<section class="card-section">
<h3>Highlights</h3>
<ul>
<li>Initial repository release</li>
<li>Interview prep focus</li>
</ul>
</section>
<section class="card-section">
<h3>New</h3>
<ul>
<li>Telling Stories With Data</li>
<li>Pandas learning material</li>
</ul>
</section>
<section class="card-section">
<h3>Notes</h3>
<ul>
<li>Foundation for future releases</li>
<li>Example-driven content</li>
</ul>
</section>
</article>
</main>
<footer class="footer">
<p>Maintained on GitHub · Updated with every release</p>
</footer>
<a href="index.html" class="floating-home hub" aria-label="Go to Home">
<span class="hub-dot"></span>
</a>
</body>
</html>