Skip to content

Commit 0d82fad

Browse files
committed
Prepare 1.1.0 org migration
bump project version to 1.1.0 and add the 1.1.0 changelog entry for the repository ownership transition baseline update pom metadata to CodecMediaLib, including organization, SCM, issue tracker, and CI URLs for codecmedia-java
1 parent e802ee7 commit 0d82fad

File tree

2 files changed

+21
-8
lines changed

2 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.0] - 2026-03-13
9+
10+
### Changed
11+
- Migrated repository ownership and project references to `CodecMediaLib/codecmedia-java`.
12+
- Updated SCM/issue/CI metadata in [`pom.xml`](pom.xml).
13+
- Updated organization metadata in [`pom.xml`](pom.xml) to `CodecMediaLib`.
14+
15+
### Notes
16+
- This `1.1.0` release is a transition baseline and prepares for larger updates planned in the `1.1.*` series.
17+
818
## [1.0.4] - 2026-03-05
919

1020
### Added
1121
- Added richer MOV probe fields in [`MovProbeInfo`](src/main/java/me/tamkungz/codecmedia/internal/video/mov/MovProbeInfo.java): `videoBitrateKbps`, `audioBitrateKbps`, `bitDepth`, and `displayAspectRatio`.
1222
- Added richer MP4 probe fields in [`Mp4ProbeInfo`](src/main/java/me/tamkungz/codecmedia/internal/video/mp4/Mp4ProbeInfo.java): codec/audio stream details, frame rate, bitrate fields, bit depth, and display aspect ratio.
1323
- Added richer WebM probe fields in [`WebmProbeInfo`](src/main/java/me/tamkungz/codecmedia/internal/video/webm/WebmProbeInfo.java): per-track bitrate fields and display aspect ratio.
24+
- Added real fixture coverage in [`CodecMediaFacadeTest`](src/test/java/me/tamkungz/codecmedia/CodecMediaFacadeTest.java) for probe/strict-validate using files under [`src/test/resources/example`](src/test/resources/example).
25+
- Added round-trip conversion test class [`CodecMediaRoundTripConversionTest`](src/test/java/me/tamkungz/codecmedia/CodecMediaRoundTripConversionTest.java) to validate same-extension convert->convert flows across all real example extensions (`mp3`, `mp4`, `png`, `webm`).
1426

1527
### Changed
1628
- Enhanced MOV parsing in [`MovParser`](src/main/java/me/tamkungz/codecmedia/internal/video/mov/MovParser.java) with deeper BMFF track metadata extraction (`hdlr`, `mdhd`, `stsd`, `btrt`, `stsz`) and fallback bitrate estimation.
@@ -20,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2032

2133
### Verified
2234
- Confirmed test stability after video parser improvements with `mvn test`.
35+
- Confirmed real-fixture conversion regression path with `mvn -Dtest=CodecMediaRoundTripConversionTest test`.
2336

2437
## [1.0.3] - 2026-03-05
2538

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>me.tamkungz.codecmedia</groupId>
99
<artifactId>codecmedia</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.1.0</version>
1111
<packaging>jar</packaging>
1212

1313
<name>CodecMedia</name>
@@ -19,20 +19,20 @@
1919
<url>https://codecmedia.tamkungz.me/</url>
2020

2121
<organization>
22-
<name>TamKungZ_</name>
23-
<url>https://www.tamkungz.me/</url>
22+
<name>CodecMediaLib</name>
23+
<url>https://github.com/CodecMediaLib</url>
2424
</organization>
2525

2626
<inceptionYear>2026</inceptionYear>
2727

2828
<issueManagement>
2929
<system>GitHub Issues</system>
30-
<url>https://github.com/TamKungZ/codecmedia-java/issues</url>
30+
<url>https://github.com/CodecMediaLib/codecmedia-java/issues</url>
3131
</issueManagement>
3232

3333
<ciManagement>
3434
<system>GitHub Actions</system>
35-
<url>https://github.com/TamKungZ/codecmedia-java/actions</url>
35+
<url>https://github.com/CodecMediaLib/codecmedia-java/actions</url>
3636
</ciManagement>
3737

3838
<licenses>
@@ -58,9 +58,9 @@
5858
</developers>
5959

6060
<scm>
61-
<connection>scm:git:git://github.com/TamKungZ/codecmedia-java.git</connection>
62-
<developerConnection>scm:git:ssh://github.com:TamKungZ/codecmedia-java.git</developerConnection>
63-
<url>https://github.com/TamKungZ/codecmedia-java</url>
61+
<connection>scm:git:git://github.com/CodecMediaLib/codecmedia-java.git</connection>
62+
<developerConnection>scm:git:ssh://github.com:CodecMediaLib/codecmedia-java.git</developerConnection>
63+
<url>https://github.com/CodecMediaLib/codecmedia-java</url>
6464
</scm>
6565

6666
<distributionManagement>

0 commit comments

Comments
 (0)