Skip to content

Commit

Permalink
Release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsie committed Sep 1, 2014
1 parent c92b01a commit c964593
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 6 deletions.
56 changes: 56 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,59 @@
Version 0.3.0
~~~~~~~~~~~~~
Released: 2014-09-01

Notes:
- This release breaks API and bumps the soname. See docs/PORTING.txt for more
details about what was changed.

New Features:
- Add a new kudo for high contrast icons (Richard Hughes)
- Add as_app_add_veto() (Richard Hughes)
- Add AS_APP_PARSE_FLAG_ALLOW_VETO (Richard Hughes)
- Add asb_utils_ensure_exists() (Richard Hughes)
- Add a self test framework for libappstream-builder (Richard Hughes)
- Add as_store_add_metadata_index() (Richard Hughes)
- Add AS_STORE_LOAD_FLAG_ALLOW_VETO (Richard Hughes)
- Add as_store_remove_all() (Richard Hughes)
- Add as_store_remove_app_by_id() (Richard Hughes)
- Add as_store_set_builder_id() (Richard Hughes)
- Add as_utils_find_icon_filename() (Richard Hughes)
- Add as_utils_is_spdx_license() (Richard Hughes)
- Add as_utils_spdx_license_detokenize() (Richard Hughes)
- Add check-root to appstream-util (Richard Hughes)
- Add some validation rules for metainfo files (Richard Hughes)
- Allow desktop->addon demotion with an AppData file (Richard Hughes)
- Allow filtering other kinds of components in status-csv (Richard Hughes)
- Allow translated keywords (Richard Hughes)
- Rename as_app_get_id_full() to as_app_get_id() (Richard Hughes)
- Rename as_app_get_id() to as_app_get_id_filename() (Richard Hughes)

Bugfixes:
- Add a veto if a .desktop file has NoDisplay=true (Richard Hughes)
- Add dummy failed applications (Richard Hughes)
- Add more things to the blacklist that are not applications (Richard Hughes)
- A keyword search match is better than the project name (Richard Hughes)
- Allow different source roots to define addons (Richard Hughes)
- Check the locale more carefully (Richard Hughes)
- Conform to the actual SPDX 2.0 license expression syntax (Richard Hughes)
- Do not require sentence case when validating with relaxed settings (Richard Hughes)
- Do not try to download screenshots when run with --nonet (Richard Hughes)
- Do not write <pkgname> into the ignore metadata (Richard Hughes)
- Don't add localized keywords that already exist in C (Richard Hughes)
- Ignore AppData screenshots with xml:lang attributes (Richard Hughes)
- Link client/appstream-util against gdk-pixbuf (William Hua)
- Make validate,install,dump and convert to accept a *.yml (Igor Gnatenko)
- Metadata licenses like 'CC0 and CC-BY-3.0' are content licenses (Richard Hughes)
- Never add duplicate <extends> tags (Richard Hughes)
- Never add empty keywords (Richard Hughes)
- Only get the package data when required (Richard Hughes)
- Rework as_utils_spdx_license_tokenize() to be more efficient (Richard Hughes)
- Store vetos in the XML itself (Richard Hughes)
- Support keywords separated by comma (Richard Hughes)
- Turn of sig checking for rpm packages (Richard Hughes)
- Update the SPDX license list to v1.20 (Richard Hughes)
- Use libyaml to read DEP-11 metadata (Richard Hughes)

Version 0.2.4
~~~~~~~~~~~~~
Released: 2014-08-05
Expand Down
6 changes: 3 additions & 3 deletions RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Appstream-Glib Release Notes
git shortlog appstream_glib_0_2_4.. | grep -i -v trivial | grep -v Merge > NEWS.new

--------------------------------------------------------------------------------
Version 0.2.5
Version 0.3.0
~~~~~~~~~~~~~
Released: 2014-xx-xx

Expand All @@ -20,8 +20,8 @@ Bugfixes:

4. Commit changes in git:

git commit -a -m "Release version 0.2.5"
git tag -s -f -m "Release 0.2.5" appstream_glib_0_2_5
git commit -a -m "Release version 0.3.0"
git tag -s -f -m "Release 0.3.0" appstream_glib_0_3_0
<gpg password>
git push --tags
git push
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
# - If the interface is the same as the previous version, but bugs are
# fixed, change:
# REVISION += 1
LT_CURRENT=6
LT_REVISION=5
LT_AGE=5
LT_CURRENT=7
LT_REVISION=0
LT_AGE=0
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
Expand Down

0 comments on commit c964593

Please sign in to comment.