You need to escape any special XML characters < > ' " &. You can do this using the built in function XmlFormat() around your variables, or else wrap each value with <![CDATA[...]]>
<cfloop query="GetNews">
<item>
<title>#XmlFormat(GetNews.art_title)#</title>
<link>#XmlFormat(GetNews.link_one)#</link>
<description>#XmlFormat(GetNews.art_description)#</description>
<date>#LSDateFormat(GetNews.art_timestamp,'MM/DD')#</date>
<pubDate>#LSDateFormat(GetNews.art_timestamp,'DDD, DD MMM, YYYY')#</pubDate>
</item>
</cfloop>
OR
<cfloop query="GetNews">
<item>
<title><![CDATA[#GetNews.art_title#]]></title>
<link><![CDATA[#GetNews.link_one#]]></link>
<description><![CDATA[#GetNews.art_description#]]></description>
<date>#LSDateFormat(GetNews.art_timestamp,'MM/DD')#</date>
<pubDate>#LSDateFormat(GetNews.art_timestamp,'DDD, DD MMM, YYYY')#</pubDate>
</item>
</cfloop>
-JD